-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.62 KB
/
package.json
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
{
"name": "@ogcio/fastify-scaffolding",
"version": "0.0.1",
"description": "Fastify Scaffolding",
"type": "module",
"scripts": {
"start": "node dist/index.js",
"dev": "FASTIFY_AUTOLOAD_TYPESCRIPT=1 node --watch --import tsx src/index.ts",
"build": "rm -rf dist && tsc -p tsconfig.prod.json && cp -R src/public dist/public",
"check:formatting": "biome format",
"fix:formatting": "biome format --write",
"check:linting": "biome lint",
"fix:linting": "biome lint --write",
"prepare": "husky || true",
"test": "NODE_OPTIONS='--import tsx' vitest run --reporter junit --reporter default --coverage --outputFile=results.xml"
},
"dependencies": {
"@fastify/autoload": "^6.0.2",
"@fastify/env": "^5.0.1",
"@fastify/sensible": "^6.0.1",
"@fastify/swagger": "^9.3.0",
"@fastify/swagger-ui": "^5.1.0",
"@fastify/type-provider-typebox": "^5.0.1",
"@fastify/under-pressure": "^9.0.1",
"@ogcio/fastify-error-handler": "^5.0.2",
"@ogcio/fastify-logging-wrapper": "^5.0.2",
"@sinclair/typebox": "^0.33.22",
"close-with-grace": "^2.1.0",
"fastify": "^5.1.0",
"fastify-plugin": "^5.0.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/config-conventional": "^19.5.0",
"@types/http-errors": "^2.0.4",
"@vitest/coverage-v8": "^2.1.5",
"commitlint": "^19.5.0",
"fastify-cli": "^7.0.1",
"husky": "^9.1.6",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
},
"engines": {
"node": ">=22.0.0"
},
"author": {
"name": "Samuele Salvatico",
"email": "samuele.salvatico@nearform.com"
}
}