-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
44 lines (44 loc) · 1.35 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
{
"name": "fastify-esbuild",
"version": "0.2.0",
"scripts": {
"dev": "tsx watch src",
"build": "rm -rf build && tsx esbuild.ts",
"start": "npm run build && node build",
"format": "prettier --write src",
"lint": "prettier --check src && eslint --ignore-path .gitignore .",
"ci": "pnpm format && pnpm lint",
"release:major": "standard-version --no-verify --release-as major",
"release:minor": "standard-version --no-verify --release-as minor",
"release:patch": "standard-version --no-verify --release-as patch"
},
"author": "David Peng",
"license": "ISC",
"devDependencies": {
"@types/node": "18.15.10",
"@typescript-eslint/eslint-plugin": "5.57.0",
"@typescript-eslint/parser": "5.57.0",
"esbuild": "0.17.14",
"esbuild-plugin-pino": "1.2.8",
"eslint": "8.36.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "4.2.1",
"json-schema-to-ts": "2.7.2",
"pino": "8.11.0",
"pino-pretty": "10.0.0",
"prettier": "2.8.7",
"standard-version": "9.5.0",
"thread-stream": "2.3.0",
"tiny-glob": "0.2.9",
"tsx": "3.12.6",
"typescript": "5.0.2"
},
"dependencies": {
"@fastify/autoload": "5.7.1",
"@fastify/sensible": "5.2.0",
"@fastify/swagger": "8.3.1",
"@fastify/swagger-ui": "^1.3.0",
"fastify": "4.15.0",
"fastify-plugin": "4.5.0"
}
}