-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.63 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
{
"name": "fastify-template",
"type": "module",
"version": "0.0.1",
"description": "Fastify template.",
"author": {
"name": "Author name",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/kiwilan/fastify-template#readme",
"repository": {
"type": "git",
"url": "https://github.com/kiwilan/fastify-template"
},
"keywords": [
"fastify"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"postinstall": "npm run config",
"check:types": "tsc --noEmit",
"clean": "rimraf build && rimraf node_modules && pnpm install",
"config": "node setup.js",
"dev": "npm run config && NODE_ENV=development tsx watch src .env",
"build": "rimraf build && npm run config && NODE_ENV=production tsx setup.js && npm run check:types",
"start": "node build/index.mjs",
"pm2": "pm2 start --name 'seeds' './build/index.mjs'",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@fastify/autoload": "^5.7.1",
"@fastify/cors": "^8.3.0",
"@fastify/env": "^4.2.0",
"@fastify/helmet": "^11.0.0",
"@fastify/middie": "^8.3.0",
"@fastify/sensible": "^5.2.0",
"@kiwilan/fastify-utils": "^0.2.21",
"@kiwilan/filesystem": "^0.0.19",
"fastify": "^4.21.0",
"fastify-plugin": "^4.5.1",
"rimraf": "^5.0.1"
},
"devDependencies": {
"@antfu/eslint-config": "^0.40.2",
"@types/node": "^20.5.1",
"esbuild": "^0.19.2",
"esbuild-plugin-pino": "2.0.1",
"eslint": "^8.47.0",
"ofetch": "^1.1.1",
"pino": "^8.15.0",
"pino-pretty": "^10.2.0",
"tsx": "^3.12.7",
"typescript": "^5.1.6"
}
}