-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.01 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
{
"devDependencies": {
"@eslint/js": "^9.22.0",
"@firebase/rules-unit-testing": "^4.0.1",
"@types/jsdom": "^21.1.7",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"eslint": "^9.22.0",
"eslint-plugin-no-relative-import-paths": "^1.6.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"lint-staged": "^15.5.0",
"prettier": "3.5.3",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-tailwindcss": "^0.6.11",
"tsx": "^4.21.0",
"typescript": "^5.8.2",
"typescript-eslint": "^8.51.0",
"vitest": "^3.0.7"
},
"scripts": {
"prepare": "husky",
"test": "pnpm vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "pnpm --filter=!. build"
},
"type": "module",
"lint-staged": {
"**/*.{ts,tsx,md,html,css}": [
"prettier --write --config .prettierrc",
"eslint --fix --config eslint.config.mjs"
]
}
}