-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 730 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 730 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
{
"name": "project_management_server",
"module": "app.ts",
"type": "commonjs",
"scripts": {
"dev": "bun --watch src/app.ts",
"build": "npx prisma generate && tsc && bun dist/app.js",
"createEnv": "bun scripts/create_env.js"
},
"devDependencies": {
"@types/bun": "latest",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^9.0.6",
"prisma": "^5.18.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@prisma/client": "5.18.0",
"@types/bcryptjs": "^2.4.6",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"express": "^4.19.2",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2"
}
}