-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
80 lines (80 loc) · 2.99 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "mvid2.0",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.0.0-alpha.0",
"@material-ui/icons": "^4.0.0-alpha.0",
"bezier-easing": "^2.1.0",
"browser-detect": "^0.2.28",
"classnames": "^2.2.6",
"clsx": "^1.0.2",
"comment-regex": "^1.0.1",
"dat.gui": "^0.7.3",
"detect-browser": "^5.1.0",
"file-saver": "^2.0.0",
"final-form": "^4.12.0",
"firebase": "^6.0.2",
"gl-vec4": "^1.0.1",
"lerp": "^1.0.3",
"markdown-to-jsx": "^6.9.1",
"mathjs": "^5.9.0",
"node-sass": "^4.11.0",
"open-file-explorer": "^1.0.2",
"perspective-camera": "^2.0.1",
"pixi-filters": "^3.0.2",
"pixi.js": "^5.0.3",
"prop-types": "^15.7.2",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-error-boundary": "^1.2.5",
"react-final-form": "^4.1.0",
"react-json-view": "^1.19.1",
"react-modal": "^3.8.1",
"react-redux": "^7.0.3",
"react-router-dom": "5.0.0",
"react-scripts": "^2.1.8",
"react-youtube": "^7.9.0",
"recompose": "^0.30.0",
"redux": "^4.0.1",
"simplebar": "^3.1.3",
"simplebar-react": "^0.1.4",
"stats.js": "^0.17.0",
"three": "^0.106.0",
"three.meshline": "^1.2.0",
"three.textsprite": "^18.10.24",
"uuid": "^3.3.2",
"validator": "^10.11.0"
},
"scripts": {
"start": "react-scripts start",
"make-build": "python local/generate_version.py && npm run build && npm run deploy-prod && npm run invalidate-cache && npm run build-nw && npm run prepare-builds && npm run sync",
"build-nw": "python local/generate_version.py && python local/ehmcopy.py nw && react-scripts build && python local/lcopy.py local/package.json build/package.json",
"build": "python local/ehmcopy.py web && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"deploy-prod": "aws s3 sync ./build s3://musicvid.org/ --delete",
"deploy-dev": "aws s3 sync ./build s3://mvid2.org/ --delete",
"nw-linux": " ~/Downloads/nwjs-v0.37.4-linux-x64/nw build/",
"nw-windows": "C:/Users/alex/Desktop/nwjs-v0.40.1-win-x64/nw build/",
"prepare-builds": "python local/prepare.py",
"invalidate-cache": "aws cloudfront create-invalidation --distribution-id E3KDNOXC03JXHV --paths /*",
"sync": "aws s3 sync C:/Users/alex/Desktop/mvid_deps/build s3://mvid-build/ --delete",
"sync-build": "aws s3 sync ./build s3://mvid-build/ --delete"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"copyfiles": "^2.1.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.1",
"jest-canvas-mock": "^2.1.0"
}
}