-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.19 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
{
"name": "nodejs-application",
"type": "module",
"scripts": {
"start": "tsx --env-file=.env src/main.ts",
"dev": "tsx watch --env-file=.env src/main.ts",
"build": "del dist && tsc --incremental false",
"test": "vitest",
"lint": "eslint --fix",
"check-types": "tsc --noEmit",
"prepare": "husky"
},
"main": "src/main.ts",
"devDependencies": {
"@eslint/js": "^9.12.0",
"@stylistic/eslint-plugin-js": "^2.9.0",
"@stylistic/eslint-plugin-ts": "^2.9.0",
"@total-typescript/ts-reset": "^0.6.1",
"@tsconfig/node22": "^22.0.0",
"@tsconfig/strictest": "^2.0.5",
"@types/eslint__js": "^8.42.3",
"@types/lint-staged": "^13.3.0",
"@types/node": "^22.7.4",
"@types/user-agents": "^1.0.4",
"del-cli": "^5.1.0",
"dotenv": "^16.4.5",
"eslint": "^9.12.0",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"pino-pretty": "^11.2.2",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0",
"vitest": "^2.1.2"
},
"dependencies": {
"pino": "^9.4.0",
"zod": "^3.23.8"
},
"engines": {
"node": "^22.2.0"
},
"packageManager": "[email protected]"
}