-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.25 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
{
"name": "next-server",
"type": "module",
"version": "0.0.1",
"private": true,
"author": "racespeedtime",
"license": "MIT",
"homepage": "/~https://github.com/racespeedtime/next-server",
"bugs": {
"url": "/~https://github.com/racespeedtime/next-server/issues"
},
"scripts": {
"lint:all": "pnpm lint:backend && pnpm lint:frontend && pnpm lint:server && pnpm lint:shared",
"lint:backend": "eslint \"backend/{src,apps,libs,test}/**/*.ts\" --fix",
"lint:frontend": "eslint \"frontend/**/*.{vue,ts,tsx,js}\" --fix",
"lint:server": "eslint \"server/src/**/*.ts\" --fix",
"lint:shared": "eslint \"shared/**/*.ts\" --fix",
"lint:staged": "pnpm lint-staged",
"prepare": "husky"
},
"dependencies": {
"@nestjs/mapped-types": "*",
"axios": "^1.7.7"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.3",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"eslint": "^8.57.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"typescript": "^5.6.2"
},
"lint-staged": {
"backend/{src,apps,libs,test}/**/*.ts": "eslint --fix",
"frontend/**/*.{vue,ts,tsx,js}": "eslint --fix",
"server/src/**/*.ts": "eslint --fix",
"shared/**/*.ts": "eslint --fix"
}
}