-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.92 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.92 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "finalteam-ii-sysmetic",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint \"src/**/*.{ts,tsx}\" --fix",
"preview": "vite preview",
"prepare": "husky install"
},
"lint-staged": {
"*.{js, jsx,ts,tsx}": [
"eslint --quiet --fix"
],
"*.{json,js,ts,jsx,tsx,html}": [
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@headlessui/react": "^2.2.0",
"@tanstack/react-query": "^5.20.1",
"@tanstack/react-query-devtools": "^5.20.1",
"@types/highcharts": "^7.0.0",
"axios": "^1.7.7",
"dayjs": "^1.11.13",
"highcharts": "^11.4.8",
"highcharts-react-official": "^3.2.1",
"netlify-cli": "^17.37.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.3.0",
"react-router-dom": "^6.28.0",
"vitest": "^2.1.4",
"zustand": "^4.5.0"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.12.0",
"@tanstack/eslint-plugin-query": "^5.20.1",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"husky": "^8.0.0",
"lint-staged": "^15.2.10",
"msw": "^2.6.0",
"prettier": "^3.1.1",
"typescript": "^5.2.2",
"vite": "^5.3.4",
"vite-tsconfig-paths": "^4.3.2"
},
"msw": {
"workerDirectory": [
"public"
]
}
}