-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.21 KB
/
package.json
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
{
"name": "cinema-hub-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"migrate": "node src/scripts/migrate.js",
"dev": "tsx watch --clear-screen=false src/server.ts | pino-pretty",
"start": "node dist/index.js",
"lint": "biome check src/",
"lint:fix": "biome check src/ --fix",
"format": "biome format src/"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@node-rs/argon2": "^1.8.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"express-rate-limit": "^7.4.0",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"nanoid": "^5.0.7",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.15",
"postgres": "^3.4.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "1.9.1",
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.5.5",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^6.4.16",
"pino": "^9.4.0",
"pino-pretty": "^11.2.2",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
}
}