-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1012 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
39
40
{
"name": "routine-tracker-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "npm run build && node build/server.js",
"dev": "tsx watch src/server.ts"
},
"keywords": [],
"author": "Miquéias Belarmino <github.com/MiqueiasBelarmino>",
"license": "ISC",
"dependencies": {
"@fastify/cors": "^8.2.0",
"@prisma/client": "^4.9.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"swagger-ui-express": "^4.6.0",
"zod": "^3.20.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.13",
"@types/crypto-js": "^4.1.1",
"@types/express": "^4.17.16",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^18.11.18",
"@types/swagger-ui-express": "^4.1.3",
"prisma": "^4.9.0",
"tsx": "^3.12.2",
"typescript": "^4.9.4"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}