-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 894 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
{
"name": "boilerplate",
"version": "1.0.0",
"main": "index.js",
"repository": "...",
"author": "Roberto Jr",
"license": "MIT",
"private": true,
"scripts": {
"build": "tsc && vite build",
"preview": "vite preview",
"dev": "nodemon --exec sucrase-node src/index.ts --env-file .env"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/jsonwebtoken": "^9.0.5",
"@types/module-alias": "^2.0.4",
"@types/node": "^20.8.9",
"nodemon": "^3.0.1",
"sucrase": "^3.34.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@prisma/client": "^5.5.2",
"@types/uuid": "^9.0.6",
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"fastify": "^4.24.3",
"jsonwebtoken": "^9.0.2",
"module-alias": "^2.2.3",
"prisma": "^5.5.2",
"redis": "^4.6.13",
"uuid": "^9.0.1",
"zod": "^3.22.4"
}
}