-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.46 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
{
"name": "modulo-03-api-solid",
"type": "module",
"version": "1.0.0",
"description": "## Requisitos Funcionais",
"main": "index.js",
"scripts": {
"start:dev": "tsx watch src/server.ts",
"start": "node build/server.js",
"build": "tsup src --out-dir build",
"test:create-prisma-environment": "sudo npm link ./prisma/vitest-enviroments-prisma",
"test:install-prisma-environment": "sudo npm link vitest-enviroments-prisma",
"test": "vitest run --dir src/use-cases",
"test:e2e": "vitest run --dir src/http ",
"test:e2e:watch": "vitest --dir src/http ",
"pretest:e2e": "run-s test:create-prisma-environment test:install-prisma-environment",
"test:watch": "vitest --dir src/use-cases",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/cookie": "^9.2.0",
"@fastify/jwt": "^7.2.4",
"bcryptjs": "2.4.3",
"dayjs": "1.11.10",
"dotenv": "16.3.1",
"fastify": "4.25.2",
"zod": "3.22.4"
},
"devDependencies": {
"@prisma/client": "5.7.1",
"@types/bcryptjs": "2.4.6",
"@types/node": "20.10.6",
"@types/supertest": "^6.0.2",
"@vitest/coverage-v8": "1.1.1",
"eslint": "8.56.0",
"npm-run-all": "^4.1.5",
"prisma": "5.7.1",
"supertest": "^6.3.3",
"tsup": "8.0.1",
"tsx": "4.7.0",
"typescript": "5.3.3",
"vite-tsconfig-paths": "4.2.3",
"vitest": "^1.1.3"
}
}