forked from SilveryStar/Adachi-BOT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.81 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "adachi-bot",
"private": true,
"version": "3.3.2",
"description": "功能集成的 bot 开发框架",
"scripts": {
"dev": "cross-env NODE_ENV=development ts-node app.ts",
"start": "cross-env NODE_ENV=production ts-node app.ts",
"serve": "pm2 start adachi-bot.config.js --env production",
"docker-start": "pm2-runtime start adachi-bot.config.js --env production",
"restart": "pnpm install --registry https://registry.npmmirror.com && pm2 restart adachi-bot.config.js --env production",
"stop": "pm2 delete adachi-bot.config.js",
"log": "pm2 logs --lines 100 adachi-bot"
},
"dependencies": {
"@types/ws": "^8.5.5",
"axios": "^1.3.6",
"express": "^4.18.2",
"express-jwt": "^8.4.1",
"express-ws": "^5.0.2",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"log4js": "^6.9.1",
"md5-typescript": "^1.0.5",
"moment": "^2.29.4",
"node-fetch": "^2.6.7",
"node-schedule": "^2.1.1",
"nodemailer": "^6.9.1",
"p-limit": "3",
"pm2": "^5.3.0",
"puppeteer": "^19.11.1",
"redis": "^4.6.5",
"request": "^2.88.2",
"systeminformation": "^5.17.12",
"tencentcloud-sdk-nodejs-nlp": "^4.0.590",
"ws": "^8.13.0",
"yaml": "^2.2.2"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/express-ws": "^3.0.1",
"@types/lodash": "^4.14.194",
"@types/node": "^18.16.1",
"@types/node-fetch": "^2.6.3",
"@types/node-schedule": "^2.1.0",
"@types/nodemailer": "^6.4.10",
"@types/single-line-log": "^1.1.0",
"compressing": "^1.10.0",
"cross-env": "^7.0.3",
"nodemon": "^2.0.22",
"single-line-log": "^1.1.2",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4",
"vite": "^4.4.5"
},
"workspaces": [
"src/plugins/**"
]
}