-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1021 Bytes
/
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
{
"dependencies": {
"css-loader": "^3.5.3",
"isomorphic-fetch": "^2.2.1",
"node-sass": "^4.11.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.0.0",
"sass": "^1.26.8",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "7",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"express": "^4.17.1",
"firebase-admin": "^8.12.1",
"firebase-functions": "^3.6.2",
"firebase-tools": "^8.4.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"engines": {
"node": "8.16.x"
},
"scripts": {
"util": "cp app/src/js/util.js server/js/_util.js",
"start": "yarn util && webpack",
"babel": "yarn util && babel server -d functions/server && babel index.js -d functions",
"buildall": "node build.js",
"serveall": "firebase serve --only functions,hosting"
}
}