-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.62 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.62 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
{
"name": "clean-architecture",
"description": "A Node template that follows the Clean Architecture principles and encourages established practices.",
"author": "Jamie Livingstone",
"license": "MIT",
"type": "module",
"scripts": {
"build": "tsup",
"dev": "tsx watch src/server",
"lint": "biome check . && tsc --noEmit",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"test": "vitest run",
"test:unit": "vitest run --project unit",
"test:integration": "vitest run --project integration",
"prepare": "lefthook install"
},
"dependencies": {
"@fastify/cors": "^11.2.0",
"@fastify/helmet": "^13.0.2",
"@fastify/rate-limit": "^10.3.0",
"@fastify/swagger": "^9.6.1",
"@fastify/swagger-ui": "^5.2.4",
"@fastify/type-provider-json-schema-to-ts": "^5.0.0",
"@prisma/adapter-pg": "^7.2.0",
"@prisma/client": "^7.2.0",
"dotenv": "^17.2.3",
"fastify": "^5.6.2",
"fastify-plugin": "^5.1.0",
"nanoid": "^5.1.6",
"pino": "^10.1.0",
"ts-pattern": "^5.9.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@commitlint/cli": "20.3.0",
"@commitlint/config-conventional": "20.3.0",
"@types/pg": "^8.16.0",
"@types/supertest": "^6.0.3",
"@vitest/coverage-v8": "^4.0.16",
"lefthook": "^2.0.13",
"pg": "^8.16.3",
"prisma": "^7.2.0",
"supertest": "^7.2.2",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite-tsconfig-paths": "^6.0.3",
"vitest": "^4.0.16",
"vitest-mock-extended": "^3.1.0"
},
"engines": {
"node": ">=24.0.0"
}
}