forked from FairPlayTeam/ts-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.21 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.21 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
{
"name": "fpbackend",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "bun --watch src/index.ts",
"build": "tsc",
"start": "bun dist/index.js",
"typecheck": "tsc --noEmit",
"postinstall": "bunx prisma generate",
"prisma:generate": "bunx prisma generate",
"prisma:migrate": "bunx prisma migrate dev",
"prisma:studio": "bunx prisma studio"
},
"dependencies": {
"@prisma/client": "^5.19.1",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^7.3.1",
"file-type": "^21.0.0",
"fluent-ffmpeg": "^2.1.3",
"jsonwebtoken": "^9.0.2",
"minio": "^8.0.1",
"multer": "^1.4.5-lts.1",
"pm2": "^6.0.14",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-rate-limit": "latest",
"@types/fluent-ffmpeg": "^2.1.25",
"@types/jsonwebtoken": "^9.0.6",
"@types/minio": "^7.1.1",
"@types/multer": "^1.4.12",
"@types/node": "^20.14.12",
"@types/uuid": "^10.0.0",
"prisma": "^5.19.1",
"typescript": "^5.6.2"
}
}