-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.78 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
{
"name": "fastify-template",
"version": "1.0.0",
"packageManager": "[email protected]",
"engines": {
"node": ">=20.9.0",
"yarn": ">=3.0.0"
},
"main": "index.js",
"type": "module",
"exports": "./dist/index.js",
"repository": "[email protected]:rtivital/fastify-template.git",
"author": "Vitaly Rtishchev <[email protected]>",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=production node dist/index.js",
"serve": "NODE_ENV=development node -r dotenv/config dist/index.js",
"dev": "tsx watch src",
"clean": "rimraf dist",
"build": "npm run clean && rollup -c rollup.config.mjs",
"lint": "eslint src --cache",
"typecheck": "tsc --noEmit",
"jest": "jest",
"prettier:test": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"test": "npm run prettier:test && npm run typecheck && npm run lint"
},
"devDependencies": {
"@eslint/js": "^9.6.0",
"@ianvs/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"esbuild": "^0.21.5",
"eslint": "^9.6.0",
"eslint-plugin-security": "^3.0.1",
"jest": "^29.7.0",
"pino-pretty": "^11.2.1",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"rollup": "^4.18.0",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-node-externals": "^7.1.2",
"rollup-plugin-typescript-paths": "^1.5.0",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.16.0",
"typescript": "^5.5.2",
"typescript-eslint": "^7.14.1"
},
"dependencies": {
"@fastify/accepts": "^4.3.0",
"@fastify/cors": "^9.0.1",
"@fastify/helmet": "^11.1.1",
"dotenv": "^16.4.5",
"fastify": "^4.28.1",
"pino": "^9.2.0",
"zod": "^3.23.8"
}
}