-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.42 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
71
72
73
74
75
76
{
"name": "neea-web-admin",
"private": true,
"version": "0.0.28",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"lint:ts": "eslint . --ext ts,tsx --max-warnings 0",
"lint:ts:fix": "eslint . --ext ts,tsx --max-warnings 0 --fix",
"check:ts": "tsc --extendedDiagnostics",
"prepare": "husky install && npx husky set .husky/pre-commit \"npx lint-staged\nyarn test:unit --run\" && npx husky set .husky/pre-push \"npm run check:ts\nnpm version patch\"",
"test:unit": "vitest",
"test:coverage": "vitest run --coverage"
},
"lint-staged": {
"!(*min).{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@ant-design/icons": "^5.6.1",
"@tanstack/react-query": "^5.66.9",
"@tanstack/react-query-devtools": "^5.66.9",
"antd": "^5.20.4",
"axios": "^1.7.7",
"classnames": "^2.5.0",
"jwt-decode": "^4.0.0",
"rc-virtual-list": "^3.18.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.1",
"uuid": "^10.0.0",
"zustand": "^4.5.5"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.6",
"@tanstack/eslint-plugin-query": "^5.66.1",
"@tanstack/react-query-devtools": "^5.66.9",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^14.3.1",
"@types/node": "^20.16.11",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^8.0.3",
"jsdom": "^23.2.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.6.11",
"sass": "^1.69.5",
"stylelint": "^16.1.0",
"stylelint-config-standard-scss": "^12.0.0",
"stylelint-order": "^6.0.4",
"tailwindcss": "^4.0.6",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.1",
"vite": "^5.4.1",
"vite-plugin-svgr": "^4.2.0",
"vitest": "^1.6.0"
}
}