-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.11 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.11 KB
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
{
"name": "xudb.cn",
"version": "0.0.1",
"description": "许道斌的个人网站",
"main": "index.js",
"author": "许道斌的个人网站",
"license": "MIT",
"scripts": {
"start": "nodemon --exitcrash --exec babel-node --presets es2015,stage-2 build/lib/index.js",
"prod": "node build/lib/index.js",
"server": "pm2 start --interpreter babel-node build/lib/index.js --exitcrash --exec babel-node --presets es2015,stage-2",
"build": "tsc",
"babelBuild": "babel build -d dist"
},
"dependencies": {
"body-parser": "^1.18.3",
"connect-history-api-fallback": "^1.6.0",
"express": "^4.16.4",
"file-stream-rotator": "^0.5.5",
"jsonwebtoken": "^8.4.0",
"markdown": "^0.5.0",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"mysql": "^2.16.0",
"node-schedule": "^1.3.2",
"redis": "^2.8.0",
"request": "^2.88.0",
"urlencode": "^1.1.0"
},
"devDependencies": {
"@types/node": "^12.11.5",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"nodemon": "^1.18.10",
"typescript": "^3.6.4"
}
}