|
1 | 1 | { |
2 | | - "name": "fastify-typescript-starter", |
3 | | - "version": "1.5.0", |
4 | | - "description": "Node.js boilerplate using fastify & TypeScript", |
5 | | - "type": "module", |
6 | | - "scripts": { |
7 | | - "lint": "eslint .", |
8 | | - "lint:fix": "eslint . --fix", |
9 | | - "check:types": "tsc --noEmit", |
10 | | - "build": "esbuild `find src \\( -name '*.ts' \\)` --platform=node --outdir=build --resolve-extensions=.js", |
11 | | - "build:docker:prod": "docker build . -t my-fastify-app --build-arg APP_ENV=production", |
12 | | - "start": "node build", |
13 | | - "dev": "tsx watch src .env | pino-pretty --colorize", |
14 | | - "pretest": "npm run build", |
15 | | - "test": "vitest", |
16 | | - "test:watch": "vitest -w" |
17 | | - }, |
18 | | - "repository": { |
19 | | - "type": "git", |
20 | | - "url": "git+https://github.com/yonathan06/fastify-typescript-starter.git" |
21 | | - }, |
22 | | - "engines": { |
23 | | - "node": ">=22.0.0" |
24 | | - }, |
25 | | - "keywords": [ |
26 | | - "nodejs", |
27 | | - "fastify", |
28 | | - "typescript" |
29 | | - ], |
30 | | - "author": "Yonatan Bendahan", |
31 | | - "license": "MIT", |
32 | | - "bugs": { |
33 | | - "url": "https://github.com/yonathan06/fastify-typescript-starter/issues" |
34 | | - }, |
35 | | - "homepage": "https://github.com/yonathan06/fastify-typescript-starter#readme", |
36 | | - "dependencies": { |
37 | | - "@sinclair/typebox": "^0.34.9", |
38 | | - "ajv": "^8.17.1", |
39 | | - "dotenv": "^16.4.5", |
40 | | - "env-schema": "^6.0.0", |
41 | | - "fastify": "^5.1.0", |
42 | | - "fastify-plugin": "^5.0.1" |
43 | | - }, |
44 | | - "devDependencies": { |
45 | | - "@types/node": "^22.10.1", |
46 | | - "@typescript-eslint/eslint-plugin": "^8.16.0", |
47 | | - "@typescript-eslint/parser": "^8.16.0", |
48 | | - "esbuild": "^0.24.0", |
49 | | - "eslint": "^9.16.0", |
50 | | - "eslint-config-prettier": "^9.1.0", |
51 | | - "eslint-plugin-prettier": "^5.2.1", |
52 | | - "pino-pretty": "^13.0.0", |
53 | | - "prettier": "^3.4.1", |
54 | | - "tsx": "^4.19.2", |
55 | | - "typescript": "^5.7.2", |
56 | | - "vitest": "^2.1.6" |
57 | | - } |
| 2 | + "name": "fastify-typescript-starter", |
| 3 | + "version": "1.5.0", |
| 4 | + "description": "Node.js boilerplate using fastify & TypeScript", |
| 5 | + "type": "module", |
| 6 | + "scripts": { |
| 7 | + "lint": "biome check", |
| 8 | + "check:types": "tsc --noEmit", |
| 9 | + "build": "esbuild `find src \\( -name '*.ts' \\)` --platform=node --outdir=build --resolve-extensions=.js", |
| 10 | + "build:docker:prod": "docker build . -t my-fastify-app --build-arg APP_ENV=production", |
| 11 | + "start": "node build", |
| 12 | + "dev": "tsx watch src .env | pino-pretty --colorize", |
| 13 | + "test": "vitest" |
| 14 | + }, |
| 15 | + "repository": { |
| 16 | + "type": "git", |
| 17 | + "url": "git+https://github.com/yonathan06/fastify-typescript-starter.git" |
| 18 | + }, |
| 19 | + "engines": { |
| 20 | + "node": ">=22.0.0" |
| 21 | + }, |
| 22 | + "keywords": [ |
| 23 | + "nodejs", |
| 24 | + "fastify", |
| 25 | + "typescript" |
| 26 | + ], |
| 27 | + "author": "Yonatan Bendahan", |
| 28 | + "license": "MIT", |
| 29 | + "bugs": { |
| 30 | + "url": "https://github.com/yonathan06/fastify-typescript-starter/issues" |
| 31 | + }, |
| 32 | + "homepage": "https://github.com/yonathan06/fastify-typescript-starter#readme", |
| 33 | + "dependencies": { |
| 34 | + "@sinclair/typebox": "^0.34.9", |
| 35 | + "ajv": "^8.17.1", |
| 36 | + "dotenv": "^16.4.5", |
| 37 | + "env-schema": "^6.0.0", |
| 38 | + "fastify": "^5.1.0", |
| 39 | + "fastify-plugin": "^5.0.1" |
| 40 | + }, |
| 41 | + "devDependencies": { |
| 42 | + "@biomejs/biome": "2.3.2", |
| 43 | + "@types/node": "^22.10.1", |
| 44 | + "esbuild": "^0.24.0", |
| 45 | + "pino-pretty": "^13.0.0", |
| 46 | + "tsx": "^4.19.2", |
| 47 | + "typescript": "^5.7.2", |
| 48 | + "vitest": "^2.1.6" |
| 49 | + } |
58 | 50 | } |
0 commit comments