-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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
45
46
47
48
49
50
51
52
{
"name": "api-gym-pass",
"version": "1.0.0",
"description": "GymPass style app.",
"main": "index.js",
"engines": {
"node": ">= 22"
},
"scripts": {
"start:dev": "tsx watch src/server.ts",
"start": "node build/server.js",
"build": "tsup src --out-dir build",
"test": "vitest run --dir src/use-cases",
"test:watch": "vitest --dir src/use-cases",
"test:e2e": "vitest run --dir src/http",
"test:e2e:watch": "vitest --dir src/http",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"lint:format": "npx @biomejs/biome format --write ./",
"lint": "npx @biomejs/biome lint --write ./",
"lint:check": "npx @biomejs/biome check --write ./"
},
"keywords": ["api", "GymPass", "solid"],
"author": "Fábio Brasileiro",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@types/bcryptjs": "2.4.6",
"@types/node": "22.5.5",
"@types/supertest": "6.0.2",
"@vitest/coverage-v8": "2.1.1",
"@vitest/ui": "2.1.1",
"globals": "15.9.0",
"prisma": "5.19.1",
"supertest": "7.0.0",
"tsup": "8.3.0",
"tsx": "4.19.1",
"typescript": "5.6.2",
"vite-tsconfig-paths": "5.0.1",
"vitest": "2.1.1"
},
"dependencies": {
"@fastify/cookie": "10.0.1",
"@fastify/jwt": "9.0.0",
"@prisma/client": "5.19.1",
"bcryptjs": "2.4.3",
"dayjs": "1.11.13",
"dotenv": "16.4.5",
"fastify": "5.0.0",
"zod": "3.23.8"
}
}