-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.75 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.75 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
{
"name": "tech-hack",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "npm run lint:types && npm run lint:eslint && npm run lint:prettier",
"lint:types": "tsc -b",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"lint:eslint:fix": "eslint . --fix",
"lint:prettier:fix": "prettier --write .",
"preview": "vite preview"
},
"dependencies": {
"@ant-design/icons": "^6.1.0",
"@tanstack/react-query": "^5.90.21",
"@tanstack/react-query-devtools": "^5.91.3",
"antd": "^6.3.2",
"axios": "^1.13.6",
"clsx": "^2.1.1",
"dayjs": "^1.11.20",
"file-saver": "^2.0.5",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router": "^7.13.1",
"recharts": "^3.8.0",
"vite-plugin-pwa": "^1.2.0",
"zustand": "^5.0.11"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@feature-sliced/eslint-config": "^0.1.1",
"@types/file-saver": "^2.0.7",
"@types/node": "^24.12.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.0",
"eslint": "^9.39.4",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-boundaries": "^5.4.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"eslint-plugin-unicorn": "^63.0.0",
"globals": "^17.4.0",
"msw": "^2.12.4",
"prettier": "^3.8.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^8.0.0"
},
"msw": {
"workerDirectory": [
"public"
]
}
}