-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.42 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.42 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
{
"name": "api-solid",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"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:e2e:watch": "vitest --dir src/http",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "2.4.6",
"@types/node": "18.19.46",
"@types/supertest": "6.0.2",
"@vitest/coverage-c8": "0.28.5",
"@vitest/ui": "0.28.5",
"jsdom": "25.0.0",
"npm-run-all": "4.1.5",
"prisma": "5.19.0",
"supertest": "7.0.0",
"tsup": "6.7.0",
"tsx": "3.14.0",
"typescript": "4.9.5",
"vite-tsconfig-paths": "4.0.5",
"vitest": "0.28.5"
},
"dependencies": {
"@fastify/cookie": "9.4.0",
"@fastify/jwt": "8.0.1",
"@prisma/client": "5.19.0",
"bcryptjs": "2.4.3",
"dayjs": "1.11.13",
"dotenv": "16.4.5",
"fastify": "4.13.0",
"zod": "3.23.8"
}
}