-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.34 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.34 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
{
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"npm run dev --prefix client\" \"npm run dev --prefix server\"",
"build": "npm run build --prefix client",
"start": "npm run start --prefix server",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"check": "npm run lint && npm run format",
"fix": "npm run lint:fix && npm run format:fix",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js}": [
"eslint --fix"
],
"*.{ts,tsx,js,css,md,json}": [
"prettier --write"
]
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^25.4.0",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"@vitejs/plugin-react": "^6.0.1",
"concurrently": "^9.0.0",
"eslint": "^9.39.4",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.3.3",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",
"vite": "^8.0.7"
}
}