-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.54 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.54 KB
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
{
"name": "webplayer",
"version": "0.2.0",
"private": true,
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"nodemon": "^1.11.0",
"react": "^15.5.4",
"react-apollo": "^1.2.0",
"react-dom": "^15.5.4",
"react-player": "^0.18.0",
"react-router": "^3.0.0",
"react-scripts": "1.0.6",
"rimraf": "^2.6.1"
},
"dependencies": {
"glamor": "^2.20.25",
"isomorphic-fetch": "^2.2.1",
"persistgraphql": "^0.3.2",
"react": "^15.5.4",
"react-apollo": "^1.2.0",
"react-dom": "^15.5.4",
"react-player": "^0.18.0",
"react-router": "^3.0.0"
},
"scripts": {
"manifest-fix": "node ./manifestFix.js",
"deploy:s3": "aws s3 cp ./build s3://build.classover.eu/ --recursive --acl public-read",
"deploy:lambda": "cd lambda && serverless deploy",
"deploy": "yarn deploy:s3 && yarn deploy:lambda",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"cleanup": "rimraf build/static/js/*.map && rimraf lambda/node_modules/webplayer/build/*",
"copy": "cp -rf lib/* lambda/node_modules/webplayer/lib/ && cp -rf build/* lambda/node_modules/webplayer/build/",
"compile": "NODE_ENV=production babel -d lib/ src/ --copy-files",
"start:server": "NODE_ENV=production BABEL_CACHE_PATH=../tmp/babel-cache-apollo-react.json nodemon --exec babel-node src/server/server.js",
"start:server-prod": "node lib/server/server.js"
}
}