-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.53 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.53 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"type": "module",
"name": "fastify-starter",
"imports": {
"#~/*": {
"development": "./src/*",
"default": "./*"
}
},
"description": "This project was bootstrapped with Fastify-CLI.",
"version": "2026.1.7",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"start": "wireit",
"build": "wireit",
"typecheck": "wireit",
"dev": "cross-env FASTIFY_AUTOLOAD_TYPESCRIPT=1 node --conditions=development --import=tsx --watch --env-file=.env ./src/index.ts | pino-pretty",
"check": "biome check --write ./src ./test",
"check:unsafe": "biome check --write --unsafe ./src ./test",
"release": "release-it"
},
"wireit": {
"start": {
"command": "npm run build && node dist/index.js",
"clean": "if-file-deleted",
"files": [
"src/**/*.ts",
"tsconfig.json"
],
"output": [
"dist/**",
".tsbuildinfo"
]
},
"build": {
"command": "tsc --build --pretty",
"clean": "if-file-deleted",
"files": [
"src/**/*.ts",
"tsconfig.json"
],
"output": [
"dist/**",
".tsbuildinfo"
]
},
"typecheck": {
"command": "tsc --noEmit"
}
},
"keywords": [],
"author": "Douglas Moura <douglas.ademoura@gmail.com>",
"license": "MIT",
"dependencies": {
"@fastify/autoload": "^6.3.1",
"@fastify/cors": "^11.2.0",
"@fastify/helmet": "^13.0.2",
"@fastify/sensible": "^6.0.4",
"@fastify/swagger": "^9.7.0",
"@scalar/fastify-api-reference": "^1.48.0",
"close-with-grace": "^2.5.0",
"fastify": "^5.8.1",
"fastify-plugin": "^5.1.0",
"fastify-type-provider-zod": "^6.1.0",
"pino": "^10.3.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@biomejs/biome": "^2.4.0",
"@commitlint/cli": "^20.4.0",
"@commitlint/config-conventional": "^20.4.0",
"@csmith/release-it-calver-plugin": "^2023.12.0",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.0",
"cross-env": "^10.1.0",
"fastify-tsconfig": "^3.0.0",
"lefthook": "^2.1.0",
"pino-pretty": "^13.1.3",
"release-it": "^19.2.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0",
"wireit": "^0.14.12"
},
"overrides": {
"@csmith/release-it-calver-plugin": {
"release-it": "$release-it"
},
"fastify-type-provider-zod": {
"zod": "$zod"
},
"undici": "^6.23.0",
"diff": "^8.0.3"
}
}