-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.51 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.51 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
53
54
55
56
57
{
"name": "FindAFriend-API",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsx watch --env-file .env src/http/server.ts",
"start": "node build/server.js",
"build": "tsup src --out-dir build",
"check": "biome check",
"format": "biome format",
"lint": "biome lint",
"test:unit": "vitest run --project unit",
"test:unit:watch": "vitest --project unit",
"test:e2e": "vitest run --project e2e",
"test:e2e:watch": "vitest --project e2e",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.0.1",
"@fastify/jwt": "^9.1.0",
"@prisma/client": "6.10.1",
"@types/bcryptjs": "^3.0.0",
"bcryptjs": "^3.0.2",
"fastify": "^5.4.0",
"zod": "^3.25.67"
},
"devDependencies": {
"@biomejs/biome": "2.1.1",
"@faker-js/faker": "^9.9.0",
"@types/node": "^24.0.4",
"@types/supertest": "^6.0.3",
"@vitest/coverage-v8": "3.2.4",
"@vitest/ui": "3.2.4",
"dotenv": "^17.2.0",
"prisma": "^6.10.1",
"supertest": "^7.1.3",
"tsup": "^8.5.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vite": "^7.0.4",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@10.11.1",
"engines": {
"node": "22.16.0"
}
}