forked from sebastiandotdev/dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.4 KB
/
package.json
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
{
"name": "dashboard",
"type": "module",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint .",
"test": "vitest --run",
"preview": "vite preview",
"start": "serve dist -s -n -L -p $PORT",
"prepare": "husky"
},
"dependencies": {
"@tanstack/react-query": "5.22.2",
"@tanstack/react-query-devtools": "5.24.0",
"@tanstack/react-router": "1.16.6",
"@tanstack/router-devtools": "1.16.6",
"lucide-react": "0.336.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"serve": "14.2.1",
"zustand": "4.5.1"
},
"devDependencies": {
"@antfu/eslint-config": "2.7.0",
"@tanstack/eslint-plugin-query": "5.20.1",
"@tanstack/router-vite-plugin": "1.16.5",
"@testing-library/react": "14.2.1",
"@types/node": "20.11.19",
"@types/react": "18.2.55",
"@types/react-dom": "18.2.19",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"@vitejs/plugin-react-swc": "3.5.0",
"eslint": "8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-refresh": "0.4.5",
"husky": "9.0.11",
"jsdom": "24.0.0",
"lint-staged": "15.2.2",
"typescript": "5.2.2",
"unocss": "0.58.5",
"vite": "5.1.0",
"vitest": "1.3.1"
},
"lint-staged": {
"*": "eslint . --fix"
}
}