-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 848 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 848 Bytes
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": "server",
"version": "0.0.1",
"private": true,
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"dependencies": {
"axios": "^0.15.2",
"babel-cli": "6.14.0",
"babel-core": "6.14.0",
"babel-preset-es2015": "6.14.0",
"babel-preset-stage-0": "6.5.0",
"body-parser": "^1.15.2",
"express": "4.13.3",
"foreman": "1.4.1",
"mongoose": "^4.6.6"
},
"scripts": {
"build": "cd client && npm run build",
"postinstall": "cd client && npm install",
"start:server": "nf start server=1",
"start:client": "nf start client=1",
"start:prod": "NODE_ENV=production nf start server=1",
"start": "nf start -p 3000",
"dev": "nf start -p 3000 --procfile Procfile.dev"
},
"devDependencies": {
"morgan": "^1.7.0"
},
"engines": {
"node": "6.1.0"
}
}