-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
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": "6.0.3",
"@fastify/cors": "10.0.2",
"@fastify/env": "5.0.2",
"@fastify/etag": "6.0.3",
"@fastify/helmet": "13.0.1",
"@fastify/multipart": "9.0.2",
"@fastify/rate-limit": "10.2.2",
"@fastify/sensible": "6.0.2",
"@fastify/swagger": "9.4.2",
"@fastify/swagger-ui": "5.2.1",
"@hyperdx/node-opentelemetry": "0.8.1",
"@opentelemetry/api": "1.9.0",
"@opentelemetry/auto-instrumentations-node": "0.55.3",
"@opentelemetry/exporter-metrics-otlp-proto": "0.57.1",
"@opentelemetry/exporter-trace-otlp-proto": "0.57.1",
"@opentelemetry/sdk-metrics": "1.30.1",
"@opentelemetry/sdk-node": "0.57.1",
"@sinclair/typebox": "0.34.14",
"altair-fastify-plugin": "8.1.3",
"close-with-grace": "2.2.0",
"dotenv": "16.4.7",
"fastify": "5.2.1",
"fastify-cli": "7.3.0",
"fastify-plugin": "5.0.1",
"fastify-tsconfig": "3.0.0",
"graphql": "16.10.0",
"mercurius": "16.0.1",
"mercurius-codegen": "6.0.0",
"mercurius-integration-testing": "9.0.1",
"nexus": "1.3.0",
"swagger-jsdoc": "6.2.8"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@tapjs/test": "4.0.0",
"@types/busboy": "1.5.4",
"@types/dotenv": "8.2.3",
"@types/node": "22.10.7",
"@types/swagger-jsdoc": "6.0.4",
"@types/tap": "18.0.0",
"cpy-cli": "5.0.0",
"cross-env": "7.0.3",
"fast-json-stringify": "6.0.1",
"husky": "9.1.7",
"json-schema-to-typescript": "15.0.4",
"sort-package-json": "2.14.0",
"tap": "21.0.1",
"ts-node": "10.9.2",
"tsup": "8.3.5",
"tsx": "4.19.2",
"typescript": "5.7.3"
},
"packageManager": "pnpm@9.15.4",
"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"
}
}