-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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
{
"name": "node-server",
"version": "1.0.0",
"description": "基于nodeJS开发的服务端程序",
"main": "app.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon app.js",
"prod": "pm2 start ecosystem.config.js --env production",
"doc": "apidoc -i api/ -o apidoc/"
},
"keywords": [
"node",
"express",
"mysql"
],
"author": "彭江勇",
"license": "ISC",
"dependencies": {
"apidoc": "^0.51.1",
"body-parser": "^1.20.0",
"cross-env": "^7.0.3",
"crypto": "^1.0.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"ioredis": "^5.3.2",
"log4js": "^6.5.2",
"moment": "^2.29.3",
"multer": "^1.4.5-lts.1",
"mysql": "^2.18.1",
"node-rsa": "^1.1.1",
"node-windows": "^1.0.0-beta.6",
"pm2": "^5.3.0",
"request": "^2.88.2",
"string-random": "^0.1.3"
},
"devDependencies": {
"openai": "^3.1.0"
}
}