-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.54 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.54 KB
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
{
"name": "hid-web-monorepo",
"version": "1.0.0",
"type": "module",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"lint": "pnpm exec eslint . --ext .js,.jsx,.ts,.tsx",
"format": "pnpm exec prettier --write .",
"dev:admin": "pnpm --filter @hid-web/admin dev",
"dev:user": "pnpm --filter @hid-web/user dev",
"check-types": "tsc --noEmit",
"prepare": "husky"
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"eslint --fix --cache"
]
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@eslint/js": "^9.9.0",
"@tanstack/eslint-plugin-query": "^5.66.1",
"@types/node": "^22.10.4",
"@types/react": "^19.0.2",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"globals": "^15.9.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"turbo": "^2.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0"
},
"resolutions": {
"esbuild": "0.25.0"
},
"pnpm": {
"overrides": {
"@babel/runtime": "^7.26.10"
}
},
"packageManager": "pnpm@10.4.1+sha512.c753b6c3ad7afa13af388fa6d808035a008e30ea9993f58c6663e2bc5ff21679aa834db094987129aa4d488b86df57f7b634981b2f827cdcacc698cc0cfb88af"
}