-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.22 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
37
38
39
40
41
{
"name": "ztxbbs",
"version": "1.0.0",
"private": true,
"description": "bbs system by ztx",
"main": "bbs.js",
"scripts": {
"start": "node ./bin/www",
"winstart": "set NODE_ENV=development&& node ./bin/www",
"wincleanstart": "set NODE_ENV=development&& node ./bin/www DROPALL",
"winstartproduct": "set NODE_ENV=production&& node ./bin/www",
"wincleanstartproduct": "set NODE_ENV=production&& node ./bin/www DROPALL",
"linuxstart": "node ./bin/www",
"linuxcleanstart": "node ./bin/www DROPALL",
"linuxstartproduct": "NODE_ENV=production pm2 start ./bin/www --name 'ztxbbs'",
"linuxcleanstartproduct": "NODE_ENV=production node ./bin/www DROPALL"
},
"keywords": [
"bbs"
],
"author": "ztx",
"license": "ISC",
"dependencies": {
"connect-flash": "0.1.1",
"connect-session-sequelize": "5.2.1",
"cookie-parser": "1.4.3",
"ejs": "2.5.8",
"express": "4.16.3",
"express-formidable": "1.0.0",
"express-session": "1.15.6",
"marked": "0.3.19",
"moment": "2.22.0",
"morgan": "1.9.0",
"mysql2": "1.5.3",
"nodemailer": "4.6.4",
"objectid-to-timestamp": "1.3.0",
"sequelize": "4.37.6",
"serve-favicon": "2.5.0",
"sha1": "1.1.1"
}
}