-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 984 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 984 Bytes
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
{
"name": "hacked_mud",
"private": true,
"workspaces": [
"./*"
],
"scripts": {
"lint:fix": "bun run lint:backend:fix && bun run lint:frontend:fix",
"lint:backend:fix": "cd backend && bun run lint:fix",
"lint:frontend:fix": "cd frontend && bun run lint:fix",
"docs:build": "cd vitepress && vitepress dev docs"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-vue": "^10.9.1",
"globals": "^17.6.0",
"husky": "^9.1.7",
"jiti": "^2.7.0",
"lint-staged": "^17.0.5",
"prettier": "^3.8.3",
"typescript-eslint": "^8.59.4",
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^6.0.3"
},
"dependencies": {
"@quasar/app-vite": "^2.6.0",
"eslint-plugin-import-x": "^4.16.2"
}
}