forked from JungleW/Usay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 978 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": "usay",
"version": "0.0.1",
"description": "A B/S-based SNS system as a course project.",
"main": "app.js",
"scripts": {
"postinstall": "node bin/postinstall",
"dev": "cross-env DEBUG=usay:server,usay:database nodemon bin/www",
"start": "cross-env DEBUG=usay:server,usay:database node bin/www",
"test": "cross-env DEBUG=usay:server,usay:database,usay:test node tests/models"
},
"author": "Marco, et al.",
"license": "WTFPL",
"dependencies": {
"body-parser": "^1.15.2",
"co": "^4.6.0",
"connect-multiparty": "^2.0.0",
"cookie-parser": "^1.4.3",
"cross-env": "^3.1.3",
"crypto-js": "^3.1.8",
"debug": "^2.3.2",
"ejs": "^2.5.2",
"express": "^4.14.0",
"express-session": "^1.14.2",
"fs-extra": "^1.0.0",
"moment": "^2.17.1",
"mongoose": "^4.6.8",
"morgan": "^1.7.0",
"serve-favicon": "^2.3.0",
"thunkify": "^2.1.2"
},
"devDependencies": {
"nodemon": "^1.11.0"
}
}