-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.86 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "react-starter",
"type": "module",
"version": "1.0.0",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"scripts": {
"bootstrap": "pnpm install",
"analyze": "cross-env ANALYZE=1 vite build",
"start": "vite",
"predeploy": "pnpm run build",
"prepreview": "pnpm run build",
"build": "tsc && vite build",
"deploy": "gh-pages -d dist -b gh-pages -f",
"test": "vitest",
"test:e2e": "cypress open",
"test:cov": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint --cache .",
"lint:fix": "nr lint --fix",
"clean": "rimraf pnpm-lock.yaml && rimraf node_modules",
"reinstall": "pnpm clean && npm run bootstrap",
"preinstall": "npx only-allow pnpm",
"preview": "vite preview",
"prepare": "husky || true"
},
"dependencies": {
"@arco-design/web-react": "^2.63.3",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/material": "^6.0.0",
"@pansy/react-amap": "^2.21.0",
"@pansy/react-mapbox-gl": "^1.8.1",
"@rcuse/core": "^0.25.0",
"@rcuse/integrations": "^0.25.0",
"@tanstack/react-query": "^5.52.2",
"@unocss/reset": "^0.62.3",
"axios": "^1.7.5",
"clsx": "^2.1.1",
"framer-motion": "^11.3.30",
"mapbox-gl": "^3.6.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.1",
"zustand": "^4.5.5"
},
"devDependencies": {
"@antfu/eslint-config": "^2.21.1",
"@arco-plugins/vite-react": "^1.3.3",
"@eslint-react/eslint-plugin": "^1.12.2",
"@iconify-json/carbon": "^1.1.37",
"@types/node": "^22.5.0",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"@unocss/eslint-config": "^0.62.3",
"@vitejs/plugin-react": "^4.3.1",
"cross-env": "^7.0.3",
"cypress": "^13.13.3",
"cypress-vite": "^1.5.0",
"eslint": "^8.57.0",
"eslint-plugin-cypress": "^3.3.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"gh-pages": "^6.1.1",
"https-localhost": "^4.7.1",
"husky": "^9.1.5",
"less": "^4.2.0",
"lint-staged": "^15.2.9",
"postcss": "^8.4.41",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup-plugin-visualizer": "^5.12.0",
"stylelint": "^16.8.2",
"stylelint-config-property-sort-order-smacss": "^10.0.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.2",
"typescript": "^5.5.4",
"unocss": "^0.62.3",
"vite": "^5.4.2",
"vite-bundle-visualizer": "^1.2.1",
"vite-plugin-pwa": "^0.20.1",
"vitest": "^2.0.5"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --cache --fix"
],
"*.{less,styl,html}": [
"stylelint --fix"
]
}
}