forked from bluzi/jsonstore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 979 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
{
"name": "new",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"license": "MIT",
"scripts": {
"start": "run-s client:build server:start",
"prod": "PORT=80 npm start",
"server:start": "node ./server",
"client:build": "webpack",
"heroku-postbuild": "npm run client:build"
},
"devDependencies": {
"babel-core": "^6.10.4",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.11.1",
"copy-webpack-plugin": "^4.5.1",
"nodemon": "^1.17.2",
"npm-run-all": "^4.1.2",
"webpack": "^3.8.1",
"webpack-node-externals": "^1.2.0"
},
"dependencies": {
"cors": "^2.8.4",
"express": "^4.14.0",
"firebase": "^4.12.1",
"promise-fs": "^1.3.0",
"react": "^16.2.0",
"react-dom": "^16.2.0"
}
}