-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1009 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
{
"name": "MemberPortal",
"dependencies": {
"bluebird": "^3.4.6",
"body-parser": "^1.15.2",
"connect-pg-simple": "^3.1.0",
"connect-redis": "^3.1.0",
"express": "^4.14.0",
"express-session": "^1.14.1",
"github": "^3.0.0",
"jquery": "^3.1.0",
"pg": "^6.1.0",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"redis": "^2.6.2",
"request-promise": "^4.1.1",
"winston": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"webpack": "^1.13.2"
},
"scripts": {
"start": "node dist/server.js",
"build-server": "./node_modules/.bin/babel js/server -d dist",
"build-client": "./node_modules/.bin/webpack",
"build": "npm run-script build-server && npm run-script build-client",
"build-start": "npm run-script build && npm run-script start",
"postinstall": "npm run-script build"
}
}