-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.08 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.08 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": "bot-wechat",
"version": "1.0.0",
"description": "api-tools",
"main": "src/index.ts",
"scripts": {
"dev": "nodemon --watch \"src/**/*\" -e ts --exec \"ts-node src/index.ts\"",
"build": "tsc",
"start": "npm run build && node dist/index.js",
"start:prod": "pm2 start dist/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/winston": "^2.4.4",
"axios": "^1.9.0",
"bcryptjs": "^3.0.2",
"dayjs": "^1.11.13",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.16.0",
"redis": "^4.7.1",
"reflect-metadata": "^0.2.2",
"typeorm": "^0.3.17",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/express": "^5.0.2",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.15.19",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}