-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.89 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.89 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
{
"name": "dashboard-test-structure",
"private": true,
"pnpm": {
"onlyBuiltDependencies": [
"@oacore/core-ui"
]
},
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"build:core-ui": "cd ../core-ui && pnpm run build:lib",
"dev": "vite --mode development",
"dev:local": "vite --mode local",
"build": "tsc -b && vite build --mode production",
"build:dev": "tsc -b && vite build --mode development",
"docker:build": "sh scripts/docker-build.sh",
"lint": "eslint . --format compact",
"preview": "vite preview",
"prepare": "husky"
},
"dependencies": {
"@ant-design/icons": "^5.5.1",
"@oacore/core-ui": "^2.0.19",
"@octokit/rest": "^22.0.1",
"@sentry/react": "^10.49.0",
"antd": "^6.3.1",
"axios": "^1.13.6",
"classnames": "^2.5.1",
"dayjs": "^1.11.19",
"front-matter": "^4.0.2",
"js-cookie": "^3.0.5",
"js-yaml": "^4.1.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-is": "^19.2.4",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.13.1",
"recharts": "^3.7.0",
"rehype-raw": "^7.0.0",
"swr": "^2.4.1",
"zustand": "^5.0.11"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@sentry/vite-plugin": "^5.2.0",
"@types/js-cookie": "^3.0.6",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.3.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"eslint": "^10.0.2",
"eslint-formatter-compact": "^9.0.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.3.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --format compact"
]
}
}