-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.42 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.42 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
53
54
55
{
"name": "zapnote-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc && tsc-alias && npx prisma generate",
"start": "node dist/server.js",
"postinstall": "npx prisma generate",
"prisma:generate": "npx prisma generate",
"prisma:migrate": "npx prisma migrate deploy"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.0.3",
"@types/socket.io": "^3.0.1",
"nodemon": "^3.1.11",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@prisma/adapter-pg": "^7.2.0",
"@prisma/client": "^7.2.0",
"@types/cheerio": "^0.22.35",
"@types/cors": "^2.8.19",
"@types/winston": "^2.4.4",
"@upstash/qstash": "^2.8.4",
"@upstash/redis": "^1.36.0",
"axios": "^1.13.2",
"bcrypt": "^6.0.0",
"cheerio": "^1.1.2",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"firebase-admin": "^13.6.0",
"ioredis": "^5.8.2",
"jsonwebtoken": "^9.0.3",
"pg": "^8.16.3",
"prisma": "^7.2.0",
"socket.io": "^4.8.3",
"youtube-transcript": "^1.2.1",
"zod": "^4.3.2"
}
}