-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.11 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
{
"name": "homelab-stackdoc",
"private": true,
"version": "0.1.0",
"description": "Homelab documentation tool — Document and share your setup",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "cd apps/web && vite build",
"dev": "cd apps/web && vite",
"format": "prettier --write \"**/*.{ts,tsx,json,css}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,json,css}\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky",
"typecheck": "tsc --build"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css}": [
"prettier --write"
]
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"typescript": "^5.5.0",
"typescript-eslint": "^8.57.2"
}
}