-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.58 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
{
"dependencies": {
"autosize": "^3.0.20",
"axios": "^0.17.1",
"bower": "^1.8.0",
"fetch": "^1.1.0",
"firebase": "^4.13.1",
"history": "^4.7.2",
"jquery": "^3.3.1",
"lodash.debounce": "^4.0.8",
"lodash.map": "^4.6.0",
"materialize-css": "^0.100.2",
"qs": "^6.5.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-firebaseui": "^1.2.3",
"react-router-dom": "^4.2.2"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.55",
"@babel/preset-env": "^7.0.0-beta.55",
"babel": "^6.5.2",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.10.2",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"css-loader": "^0.28.9",
"expect": "^1.20.2",
"exports-loader": "^0.6.3",
"has-to-string-tag-x": "^1.4.1",
"html-webpack-plugin": "^3.2.0",
"imports-loader": "^0.6.5",
"json-loader": "^0.5.4",
"mocha": "^5.2.0",
"node-sass": "^4.9.2",
"nodemon": "^1.18.3",
"prettier": "^1.9.2",
"react-addons-test-utils": "^15.6.2",
"react-loadable": "^5.3.1",
"style-loader": "^0.20.1",
"webpack": "^4.5.0",
"webpack-bundle-analyzer": "^2.3.1",
"webpack-cli": "^3.1.0",
"webpack-dashboard": "^2.0.0",
"yargs": "^6.4.0"
},
"scripts": {
"build-js": "webpack --config ./webpack.config.js --mode development",
"watch-js": "webpack-dashboard -- npm run build-js -- --watch",
"build-css": "node-sass --include-path scss server/static/scss/main.scss server/static/css/global.css",
"watch-css": "nodemon -e scss -x \"npm run build-css\"",
"test": "mocha './client/**/*.Spec.js' --compilers js:babel-core/register",
"watch-test": "npm test -- --watch",
"build-js:prod": "npm run build-js -- --mode production",
"build-css:prod": "node-sass --include-path scss build/static/scss/main.scss build/static/css/global.css",
"build:prod": "npm run clean && npm run build-js:prod && npm run build-css && cp -r server build",
"move:prod": "npm run clean && cp -r server build && npm run build-css:prod",
"clean": "rm -rf build",
"deploy:prod": "gcloud app deploy --project=cdac-mediasite build/app.yaml build/index.yaml -q --promote",
"bnd": "npm run build:prod && npm run deploy:prod",
"start": "dev_appserver.py server/app.yaml --port=8078 --admin_port=9078 --storage_path=./data/",
"bower-install": "bower install",
"format-js": "prettier 'src/**/*.js' --write"
}
}