-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 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
{
"name": "solid-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"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",
"preteste2e": "cd prisma/vitest-environment-prisma && npm link",
"teste2e": "npm link vitest-environment-prisma && vitest run --dir src/http",
"teste2e:watch": "vitest run --dir src/http",
"test:coverage": "vitest run --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@rocketseat/eslint-config": "1.2.0",
"@types/bcryptjs": "2.4.2",
"@types/node": "18.15.3",
"@types/supertest": "2.0.12",
"@vitest/coverage-c8": "0.29.7",
"eslint": "8.36.0",
"prisma": "4.11.0",
"supertest": "6.3.3",
"tsup": "6.7.0",
"tsx": "3.12.5",
"typescript": "5.0.2",
"vite-tsconfig-paths": "4.0.7",
"vitest": "0.29.7"
},
"dependencies": {
"@fastify/cookie": "8.3.0",
"@fastify/jwt": "6.7.1",
"@prisma/client": "4.11.0",
"bcryptjs": "2.4.3",
"dayjs": "1.11.7",
"dotenv": "16.0.3",
"fastify": "4.15.0",
"zod": "3.21.4"
}
}