-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 756 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 756 Bytes
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
{
"name": "capsule",
"version": "1.0.1",
"description": "Self-hosted video management app",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"worker": "node src/worker.js",
"dev": "node --watch src/app.js",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"dependencies": {
"artplayer": "^5.2.1",
"bcrypt": "^5.1.1",
"chokidar": "^5.0.0",
"compression": "^1.8.1",
"dotenv": "^16.4.7",
"ejs": "^3.1.10",
"express": "^4.21.2",
"express-mysql-session": "^3.0.3",
"express-rate-limit": "^8.3.1",
"express-session": "^1.18.1",
"mysql2": "^3.12.0"
},
"devDependencies": {
"jest": "^30.4.2",
"supertest": "^7.2.2"
}
}