-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.17 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"engines": {
"node": ">=8.5",
"npm": ">=5.6"
},
"workspaces": ["client"],
"scripts": {
"start":
"if-env NODE_ENV=production && yarn serve || npm-run-all -p server build-server client",
"server": "nodemon --watch build --exec \"node build/bundle.js\"",
"test": "npm test --prefix client",
"serve": "node build/bundle.js",
"build-server": "webpack --config webpack.config.js --watch",
"client": "npm start --prefix client",
"heroku-postbuild":
"NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.16.2",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-stage-0": "^6.24.1",
"body-parser": "^1.17.2",
"ccxt": "^1.10.487",
"cookie-session": "^1.3.1",
"express": "^4.15.4",
"if-env": "^1.0.0",
"lodash": "^4.17.4",
"nodemon": "^1.11.0",
"path-parser": "^2.0.2",
"webpack-node-externals": "^1.6.0"
},
"devDependencies": {
"npm-run-all": "^4.1.2"
}
}