This repository was archived by the owner on Aug 8, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.54 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.54 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "local-llama",
"version": "0.4.0",
"private": true,
"homepage": ".",
"dependencies": {
"@ant-design/icons": "^6.0.0",
"@ant-design/pro-components": "^2.8.7",
"@ant-design/pro-layout": "^7.22.4",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@vitejs/plugin-react-swc": "^3.9.0",
"antd": "^5.24.9",
"antd-crud-table": "^0.0.10",
"copy-clipboard-js": "^2.1.1",
"fuse.js": "^7.1.0",
"http-response-details": "^2.1.0",
"i18next": "^24.2.3",
"i18next-browser-languagedetector": "^8.0.5",
"network-react": "^1.2.0",
"os-check": "^2.5.0",
"persistent-state-react": "0.0.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.5.1",
"react-router-dom": "^6.30.0",
"rollup-plugin-visualizer": "^5.14.0",
"vite": "^6.3.3",
"vite-plugin-radar": "^0.9.6",
"vite-plugin-svgr": "^2.4.0",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@types/jest": "^27.5.2",
"@types/node": "^18.19.87",
"@types/node-fetch": "^2.6.12",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.6",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.4.21",
"cypress": "^13.17.0",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"gh-pages": "^4.0.0",
"postcss": "^8.5.3",
"puppeteer": "^24.7.2",
"sass": "^1.87.0",
"tailwindcss": "^3.4.17",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"vite-plugin-pwa": "^1.0.0",
"vite-plugin-sitemap": "^0.8.2"
},
"scripts": {
"start": "vite",
"build": "NODE_OPTIONS='--max-old-space-size=8192' rm -rf build && tsc && vite build",
"serve": "vite preview",
"predeploy": "pnpm lint && pnpm build",
"deploy": "gh-pages -d build",
"test:e2e": "cypress open",
"test:e2e:ci": "cypress run",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}