-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.38 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
{
"name": "academy-api-solid",
"version": "1.0.0",
"description": "Aplicação estilo GymPass.",
"main": "index.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"start": "node build/server.js",
"build": "tsup src --out-dir build",
"test:create-prisma-environment": "npm link ./prisma/vitest-environment-prisma",
"test:install-prisma-environment": "npm link vitest-environment-prisma",
"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:e2e:watch": "vitest --dir src/http",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"docker:start": "docker compose up -d",
"docker:stop": "docker compose stop"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.11.28",
"@types/supertest": "6.0.2",
"@vitest/coverage-v8": "1.4.0",
"prisma": "5.11.0",
"supertest": "6.3.4",
"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",
"@types/bcryptjs": "2.4.6",
"bcryptjs": "2.4.3",
"dayjs": "1.11.10",
"dotenv": "16.4.5",
"fastify": "^4.26.2",
"zod": "3.22.4"
}
}