-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.17 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
40
41
42
43
44
{
"name": "api-solid",
"version": "1.0.0",
"description": "GymPass style app.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node build/server.js",
"dev": "tsx watch --env-file .env src/server.ts",
"build": "tsup src --out-dir build",
"test": "vitest run --dir src/use-cases",
"test:watch": "vitest --dir src/use-cases --watch",
"test:e2e": "vitest run --dir src/http",
"test:e2e:watch": "vitest --dir src/http",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "20.10.0",
"@types/supertest": "6.0.2",
"@vitest/coverage-v8": "0.34.6",
"@vitest/ui": "0.34.6",
"eslint": "8.54.0",
"eslint-config-standard-with-typescript": "40.0.0",
"prisma": "5.6.0",
"supertest": "7.0.0",
"tsup": "8.0.1",
"tsx": "4.4.0",
"typescript": "5.3.2",
"vite-tsconfig-paths": "4.2.1",
"vitest": "0.34.6"
},
"dependencies": {
"@fastify/jwt": "8.0.0",
"@prisma/client": "5.6.0",
"@types/bcryptjs": "2.4.6",
"bcryptjs": "2.4.3",
"fastify": "4.24.3",
"zod": "3.22.4"
}
}