-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1 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": "cinesorte-backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "jest --runInBand --detectOpenHandles",
"backfill:review-likes": "node scripts/backfillReviewLikesIndex.js",
"resend:verification-emails": "node src/cli/resendVerificationEmails.js",
"migrate:watch-party": "node src/cli/migrateWatchParty.js"
},
"jest": {
"setupFiles": [
"<rootDir>/tests/jest.setup.js"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"axios": "^1.12.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"express-rate-limit": "^8.2.1",
"firebase-admin": "^13.5.0",
"helmet": "^8.1.0",
"pg": "^8.22.0",
"winston": "^3.19.0",
"ws": "^8.21.1",
"zod": "^4.3.6"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.1.10",
"supertest": "^6.3.3"
}
}