-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1 KB
/
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
{
"name": "03-api-solid",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "node build/server.js",
"dev": "tsx --watch src/server.ts",
"build": "tsup src/* --minify --out-dir build",
"docker:run": "docker-compose up -d",
"prisma:migrate": "npx prisma migrate dev",
"prisma:studio": "npx prisma studio",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.11.29",
"@vitest/coverage-v8": "^1.4.0",
"prettier": "^3.1.0",
"prisma": "^5.11.0",
"tsup": "^8.0.2",
"tsx": "^4.7.1",
"typescript": "^5.4.2",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.4.0"
},
"dependencies": {
"@fastify/cookie": "^9.3.1",
"@fastify/jwt": "^8.0.0",
"@prisma/client": "^5.11.0",
"bcryptjs": "^2.4.3",
"dayjs": "^1.11.10",
"dotenv": "^16.4.5",
"fastify": "^4.26.2",
"zod": "^3.22.4"
}
}