-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1 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
{
"packageManager": "[email protected]",
"author": "Zero <[email protected]>",
"scripts": {
"build": "pnpm -F @nailyjs.nest.modules/config-value build",
"lint": "eslint . --fix",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"dependencies": {
"@nestjs/common": "^10.3.10",
"@nestjs/core": "^10.3.10"
},
"devDependencies": {
"@antfu/eslint-config": "^2.16.1",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@commitlint/types": "^17.8.1",
"@naiable/rollup-config": "^0.2.1",
"@types/glob": "^8.1.0",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.57.0",
"glob": "^11.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"rollup": "^4.20.0",
"tslib": "^2.6.3",
"typescript": "^5.4.2",
"vitest": "^1.4.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,vue,json,scss,less,html}": [
"eslint . --fix"
]
}
}