-
Notifications
You must be signed in to change notification settings - Fork 207
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.33 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "qwen2api",
"version": "2026.09.11.12.00",
"main": "src/server.js",
"engines": {
"node": ">=22"
},
"scripts": {
"start": "node src/start.js",
"dev": "nodemon src/server.js",
"test": "node tools/test-gate.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"pm2": "pm2 start ecosystem.config.js",
"pm2:stop": "pm2 stop qwen2api",
"pm2:restart": "pm2 restart qwen2api",
"pm2:reload": "pm2 reload qwen2api",
"pm2:delete": "pm2 delete qwen2api",
"pm2:logs": "pm2 logs qwen2api",
"pm2:status": "pm2 status",
"pm2:monit": "pm2 monit",
"test:raw": "node --test --test-force-exit tests/*.test.js",
"test:bless": "node tools/test-gate.js --bless"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"ali-oss": "^6.22.0",
"axios": "^1.11.0",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"csrf": "^3.1.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"form-data": "^4.0.2",
"https-proxy-agent": "^7.0.6",
"ioredis": "^5.6.1",
"jwt-decode": "^4.0.0",
"mime-types": "^3.0.1",
"multer": "^1.4.5-lts.1",
"pm2": "^6.0.8",
"tiktoken": "^1.0.21"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.9.1",
"globals": "^17.11.0",
"nodemon": "^3.1.7"
}
}