-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.47 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.47 KB
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": "03-api-solid",
"version": "1.0.0",
"description": "GymPass style app.",
"main": "index.js",
"engines": {
"node": ">=18"
},
"scripts": {
"start:dev": "tsx watch src/server.ts",
"start": "node build/server.js",
"test:create-prisma-environment": "npm link ./prisma/vitest-environment-prisma",
"test:install-prisma-environment": "npm link vitest-environment-prisma",
"build": "tsup src --out-dir build",
"test": "vitest run --dir src/use-cases",
"test:watch": "vitest --dir src/use-cases",
"pretest:e2e": "run-s test:create-prisma-environment test:install-prisma-environment",
"test:e2e": "vitest run --dir src/http",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@rocketseat/eslint-config": "2.2.2",
"@types/bcryptjs": "3.0.0",
"@types/node": "25.5.0",
"@types/supertest": "7.2.0",
"@vitest/coverage-c8": "0.33.0",
"@vitest/ui": "4.1.0",
"eslint": "10.0.3",
"npm-run-all": "4.1.5",
"prisma": "7.5.0",
"supertest": "7.2.2",
"tsup": "8.5.1",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vite-tsconfig-paths": "6.1.1",
"vitest": "4.1.0"
},
"dependencies": {
"@fastify/cookie": "11.0.2",
"@fastify/jwt": "10.0.0",
"@prisma/client": "7.5.0",
"bcryptjs": "3.0.3",
"dayjs": "1.11.20",
"dotenv": "17.3.1",
"fastify": "5.8.2",
"zod": "4.3.6"
}
}