-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 946 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 946 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
32
33
34
35
36
37
38
39
{
"name": "backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "nodemon -e ts --exec \"npx tsx -r tsconfig-paths/register src/index.ts\"",
"start": "npx tsx -r tsconfig-paths/register src/index.ts"
},
"prisma": {
"seed": "ts-node prisma/seed.cts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@prisma/client": "^6.10.1",
"bcrypt": "^6.0.0",
"chalk": "^5.4.1",
"check-password-strength": "^3.0.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"ws": "^8.18.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.3",
"nodemon": "^3.1.10",
"prisma": "^6.10.1"
}
}