-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
41 lines (41 loc) · 992 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
38
39
40
41
{
"name": "place",
"version": "1.0.0",
"description": "place",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node build/index.js",
"develop": "nodemon --delay 1 --inspect --watch src --watch package.json --exec babel-node src/index.js",
"build": "babel src --out-dir build"
},
"repository": {
"type": "git",
"url": "https://git.coding.net/4074/place.git"
},
"author": "4074",
"license": "ISC",
"dependencies": {
"bluebird": "^3.5.0",
"body-parser": "^1.17.2",
"connect-mongo": "^1.3.2",
"express": "^4.15.4",
"express-session": "^1.15.5",
"moment": "^2.19.3",
"mongoose": "^4.11.7",
"socket.io": "^2.0.3",
"validator": "^8.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-0": "^6.24.1",
"nodemon": "^1.11.0"
},
"babel": {
"presets": [
"env",
"stage-0"
]
}
}