-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 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
{
"private": true,
"dependencies": {
"express": "^4.13.4",
"winston": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.6.4",
"babel-eslint": "^5.0.0",
"babel-polyfill": "^6.6.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "~2.2.0",
"eslint-config-airbnb": "^6.0.2",
"eslint-plugin-react": "^4.2.1"
},
"engines": {
"node": "^4.2.4",
"npm": "^3.7.5"
},
"scripts": {
"build-backend": "cd backend && npm run build",
"build-frontend": "cd frontend && npm run build",
"build-frontend-dev": "cd frontend && npm run build-dev",
"build-frontend-client": "cd frontend && npm run build-client",
"build-frontend-server": "cd frontend && NODE_ENV=production npm run build-server",
"build-proxy": "cd proxy && npm run build",
"lint": "eslint backend/scripts backend/src frontend/scripts frontend/src proxy/src",
"postinstall": "cd backend && npm install && cd ../frontend && npm install && cd ../proxy && npm install",
"start": "NODE_ENV=production node server",
"start-dev": "NODE_ENV=development node server",
"update-schema": "cd backend && npm run update-schema"
}
}