-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.05 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.05 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
{
"type": "module",
"name": "fastify-starter",
"description": "This project was bootstrapped with Fastify-CLI.",
"version": "2024.11.2",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "vitest",
"start": "wireit",
"build": "wireit",
"typecheck": "wireit",
"dev": "cross-env FASTIFY_AUTOLOAD_TYPESCRIPT=1 node --import=tsx --watch --env-file=.env ./src/index.ts",
"check": "biome check --write ./src",
"check:unsafe": "biome check --write-unsafe ./src",
"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 && tsc-alias",
"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.0.2",
"@fastify/sensible": "^6.0.1",
"@fastify/swagger": "^9.4.0",
"@scalar/fastify-api-reference": "^1.25.66",
"close-with-grace": "^2.1.0",
"fastify": "^5.2.0",
"fastify-plugin": "^5.0.1",
"fastify-type-provider-zod": "^4.0.2",
"pino": "^9.6.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@csmith/release-it-calver-plugin": "^2023.12.0",
"@types/node": "^22.10.6",
"cross-env": "^7.0.3",
"fastify-tsconfig": "^2.0.0",
"lefthook": "^1.10.0",
"pino-pretty": "^11.3.0",
"release-it": "^17.11.0",
"tsc-alias": "^1.8.10",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.5",
"wireit": "^0.14.9"
}
}