-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.31 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.31 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
{
"name": "fastify-typescript-starter",
"version": "1.5.0",
"description": "Node.js boilerplate using fastify & TypeScript",
"type": "module",
"scripts": {
"lint": "biome check",
"check:types": "tsc --noEmit",
"build": "esbuild `find src \\( -name '*.ts' \\)` --platform=node --outdir=build --resolve-extensions=.js",
"build:docker:prod": "docker build . -t my-fastify-app --build-arg APP_ENV=production",
"start": "node build",
"dev": "tsx watch src .env | pino-pretty --colorize",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yonathan06/fastify-typescript-starter.git"
},
"engines": {
"node": ">=22.0.0"
},
"keywords": [
"nodejs",
"fastify",
"typescript"
],
"author": "Yonatan Bendahan",
"license": "MIT",
"bugs": {
"url": "https://github.com/yonathan06/fastify-typescript-starter/issues"
},
"homepage": "https://github.com/yonathan06/fastify-typescript-starter#readme",
"dependencies": {
"@sinclair/typebox": "^0.34.41",
"ajv": "^8.17.1",
"dotenv": "^17.2.3",
"env-schema": "^7.0.0",
"fastify": "^5.6.1",
"fastify-plugin": "^5.1.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.2",
"@types/node": "^24.9.2",
"esbuild": "^0.25.12",
"pino-pretty": "^13.1.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^4.0.6"
}
}