-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.04 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.04 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
{
"name": "cloudnet-panel-server",
"version": "1.0.1",
"description": "Backend API for CloudNet Panel",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"create-admin": "node ../scripts/create-admin.js",
"generate-secret": "node ../scripts/generate-jwt-secret.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --coverage --ci --maxWorkers=2"
},
"dependencies": {
"archiver": "^7.0.1",
"axios": "^1.13.5",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^17.2.1",
"express": "^4.22.1",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.1",
"multer": "^2.0.2",
"node-cron": "^4.2.1",
"sqlite3": "^5.1.6",
"winston": "^3.19.0",
"ws": "^8.14.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"supertest": "^7.2.2"
}
}