forked from jellydn/fastify-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.88 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
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
{
"name": "fastify-starter",
"version": "0.3.0",
"description": "Fastify Typescript Starter",
"keywords": ["fastify", "fastify-starter"],
"license": "MIT",
"author": "Huynh Duc Dung",
"main": "app.ts",
"directories": {
"test": "test"
},
"scripts": {
"build": "tsup",
"build:ts": "tsup --env.NODE_ENV production",
"check": "biome check --apply .",
"compile-schemas": "json2ts -i src/schemas -o src/types",
"copy:assets": "cpy 'src/generated/*.json' dist/generated",
"dev": "pnpm compile-schemas && pnpm dev:watch",
"dev:watch": "tsx watch src/server.ts",
"format": "biome format . --write",
"lint": "biome lint .",
"migrate:eslint": "biome migrate eslint --write",
"migrate:prettier": "biome migrate prettier --write",
"start": "tsx src/server.ts",
"start:prod": "node dist/server.js",
"test": "cross-env TS_NODE_FILES=true tap test/**/*.test.ts",
"typecheck": "tsc -noEmit"
},
"dependencies": {
"@fastify/autoload": "5.8.2",
"@fastify/cors": "9.0.1",
"@fastify/env": "4.3.0",
"@fastify/etag": "5.2.0",
"@fastify/helmet": "11.1.1",
"@fastify/multipart": "8.2.0",
"@fastify/rate-limit": "9.1.0",
"@fastify/sensible": "5.6.0",
"@fastify/swagger": "8.14.0",
"@fastify/swagger-ui": "3.0.0",
"@hyperdx/node-opentelemetry": "0.7.0",
"@opentelemetry/api": "1.8.0",
"@opentelemetry/auto-instrumentations-node": "0.46.1",
"@opentelemetry/exporter-metrics-otlp-proto": "0.51.1",
"@opentelemetry/exporter-trace-otlp-proto": "0.51.1",
"@opentelemetry/sdk-metrics": "1.24.1",
"@opentelemetry/sdk-node": "0.51.1",
"@sinclair/typebox": "0.32.31",
"altair-fastify-plugin": "7.0.1",
"close-with-grace": "1.3.0",
"dotenv": "16.4.5",
"fastify": "4.27.0",
"fastify-cli": "6.1.1",
"fastify-plugin": "4.5.1",
"fastify-tsconfig": "2.0.0",
"graphql": "16.8.1",
"mercurius": "14.1.0",
"mercurius-codegen": "5.0.4",
"mercurius-integration-testing": "8.2.0",
"nexus": "1.3.0",
"swagger-jsdoc": "6.2.8"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@tapjs/test": "2.0.1",
"@types/busboy": "1.5.4",
"@types/dotenv": "8.2.0",
"@types/node": "20.12.12",
"@types/swagger-jsdoc": "6.0.4",
"@types/tap": "15.0.11",
"cpy-cli": "5.0.0",
"cross-env": "7.0.3",
"fast-json-stringify": "5.16.0",
"husky": "9.0.11",
"json-schema-to-typescript": "14.0.4",
"sort-package-json": "2.10.0",
"tap": "19.0.2",
"ts-node": "10.9.2",
"tsup": "8.0.2",
"tsx": "4.11.0",
"typescript": "5.4.5"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.17.0"
},
"tsup": {
"entry": ["src/**/*.ts"],
"splitting": false,
"sourcemap": true,
"clean": true,
"format": ["cjs", "esm"],
"legacyOutput": true,
"target": "es2018",
"onSuccess": "npm run copy:assets"
}
}