-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 876 Bytes
/
package.json
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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "tsx src/server.ts",
"start:dev": "tsx watch src/server.ts",
"build": "tsup src"
},
"prisma": {
"seed": "tsx src/database/seed.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@mermaid-js/mermaid-cli": "^9.4.0",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.1",
"prisma": "^4.10.1",
"prisma-erd-generator": "^1.2.5",
"tsup": "^6.6.3",
"tsx": "^3.12.3",
"typescript": "^4.9.5"
},
"dependencies": {
"@prisma/client": "^4.10.1",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^9.0.0",
"yup": "^1.0.2"
}
}