-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (59 loc) · 1.61 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "grades",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"tauri dev": "tauri dev",
"tauri build": "tauri build",
"tauri build ssl": "tauri build --features vendored_ssl",
"build ts entity": "cd src-tauri/entity && cargo test && cd .. && cargo test",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint ."
},
"dependencies": {
"@emotion/react": "^11.11",
"@emotion/styled": "^11.11",
"@babel/core": "^7.21",
"@fontsource/roboto": "~4.5",
"@mui/icons-material": "~5.11",
"@mui/material": "~5.13",
"@mui/system": "~5.12",
"@mui/x-date-pickers": "~6.5",
"notistack": "^3.0",
"dayjs": "^1.11",
"zustand": "^4.3",
"zod": "^3.21",
"@tanstack/react-query": "^4.29",
"@tanstack/react-query-devtools": "^4.29",
"@tanstack/react-router": "0.0.1-beta.83",
"recharts": "^2.6",
"react": "experimental",
"react-dom": "experimental",
"typescript": "^5.0",
"vite": "^4.3",
"@vitejs/plugin-react-swc": "^3.3",
"@tauri-apps/cli": "1.3.1",
"@tauri-apps/api": "1.3.0"
},
"devDependencies": {
"@types/node": "^20.1",
"@types/react": "^18.2",
"@types/react-dom": "^18.2",
"vitest": "^0.31",
"@vitest/coverage-c8": "^0.31",
"@vitest/ui": "^0.31",
"jsdom": "^22.0",
"css-mediaquery": "^0.1",
"@testing-library/react": "^14.0",
"@testing-library/dom": "^9.3",
"@testing-library/user-event": "^14.4",
"vite-bundle-visualizer": "^0.6",
"eslint": "8.40.0",
"@typescript-eslint/eslint-plugin": "5.59.6",
"@typescript-eslint/parser": "5.59.6",
"eslint-plugin-react-hooks": "experimental"
}
}