-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 722 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 722 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
{
"name": "course-api",
"module": "index.ts",
"type": "module",
"private": true,
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/bun": "latest",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/pg": "^8.18.0",
"dotenv": "^16.4.7",
"prisma": "^7.4.2"
},
"scripts": {
"build": "bun run index.ts",
"dev": "bun run index.ts"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@prisma/adapter-pg": "^7.4.2",
"@prisma/client": "^7.4.2",
"bcrypt": "^6.0.0",
"cors": "^2.8.6",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"pg": "^8.19.0",
"zod": "^4.3.6"
}
}