-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.34 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
{
"name": "dashboard-test-structure",
"private": true,
"pnpm": {
"onlyBuiltDependencies": [
"@oacore/core-ui",
"@sentry/cli"
]
},
"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",
"dev:staging": "vite --mode staging",
"build": "tsc -b && vite build --mode production",
"build:production": "tsc -b && vite build --mode production",
"build:dev": "tsc -b && vite build --mode development",
"build:staging": "tsc -b && vite build --mode staging",
"docker:build": "sh scripts/docker-build.sh",
"lint": "eslint . --format compact",
"preview": "vite preview",
"prepare": "husky",
"sentry:info": "sentry-cli info",
"sentry:releases:list": "sentry-cli releases list",
"sentry:sourcemaps:upload": "sentry-cli sourcemaps upload -o oacore -p dashboard-pk -r dashboard-pk@0.0.0 ./dist/assets --url-prefix '~/assets'"
},
"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/cli": "^3.4.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"
]
}
}