-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.08 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
{
"name": "JSErrorMonitor-server",
"description": "JSErrorMonitor的API服务",
"version": "1.0.0",
"config": {
"port": "8088"
},
"scripts": {
"start": "node ./bin/www",
"debug": "nodemon --nolazy --debug --harmony ./bin/www",
"db": "sudo mongod --fork --logpath \"./db.log\"",
"release:major": "npm version major && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:patch": "npm version patch && npm publish && git push --follow-tags"
},
"dependencies": {
"body-parser": "^1.13.3",
"cookie-parser": "^1.3.3",
"ejs": "^2.3.1",
"express": "^4.13.3",
"express-session": "^1.13.0",
"lodash": "^4.6.1",
"moment": "^2.12.0",
"mongoose": "^4.4.10",
"mongoose-auto-increment": "^5.0.1",
"morgan": "^1.6.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^4.0.0",
"request-ip": "^1.2.2",
"serve-favicon": "^2.3.0",
"stacky": "^1.3.1",
"useragent": "^2.1.9"
},
"devDependencies": {}
}