main
json 49 lines 1.05 KB
Raw
1 {
2 "name": "@hfs/frontend",
3 "private": true,
4 "scripts": {
5 "start": "vite",
6 "build": "tsc && vite build",
7 "report": "tsc && BUNDLE_REPORT=1 vite build",
8 "preview": "vite preview",
9 "test-dep": "npm audit --production"
10 },
11 "dependencies": {
12 "@hfs/shared": "*",
13 "lodash": "^4.17.21",
14 "preact": "^10.28.1",
15 "usehooks-ts": "^2.6.0",
16 "valtio": "^1.13.0",
17 "wouter": "^3.4.1",
18 "xxhashjs": "^0.2.2"
19 },
20 "devDependencies": {
21 "@preact/preset-vite": "^2.10.5",
22 "@types/lodash": "^4.14.178",
23 "@types/react": "^18.3.14",
24 "@types/react-dom": "^18.3.2",
25 "@types/xxhashjs": "^0.2.4",
26 "@vitejs/plugin-legacy": "^8.0.2",
27 "sass": "^1.54.5",
28 "sonda": "^0.10.1",
29 "vite": "*"
30 },
31 "eslintConfig": {
32 "extends": [
33 "react-app",
34 "react-app/jest"
35 ]
36 },
37 "browserslist": {
38 "production": [
39 ">0.2%",
40 "not dead",
41 "not op_mini all"
42 ],
43 "development": [
44 "last 1 chrome version",
45 "last 1 firefox version",
46 "last 1 safari version"
47 ]
48 }
49 }