-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.07 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
{
"name": "web-console",
"version": "1.15.1",
"type": "module",
"private": true,
"devDependencies": {
"@ant-design/icons": "^6.0.0",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.59.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/humanize-duration": "^3.27.1",
"@types/node": "^25.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/browser": "^4.1.2",
"antd": "^6.0.0",
"audit-ci": "^7.1.0",
"buffer": "^6.0.3",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"humanize-duration": "^3.33.2",
"jsdom": "^29.0.1",
"prettier": "^3.8.1",
"prettier-bytes": "^1.0.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.0.0",
"reduct-js": "^1.21.0-beta.1",
"typescript": "^6.0.0",
"typescript-eslint": "^8.58.0",
"vite": "^8.0.5",
"vitest": "^4.1.2",
"web-vitals": "^5.0.0"
},
"scripts": {
"start": "VITE_APP_VERSION=$npm_package_version vite",
"build": "VITE_APP_VERSION=$npm_package_version vite build",
"preview": "vite preview",
"test": "vitest run",
"test:ci": "vitest run",
"lint": "eslint .",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"audit:ci": "audit-ci --config ./audit-ci.json",
"e2e": "playwright test",
"e2e:headed": "playwright test --headed --project=chromium",
"e2e:headed:debug": "playwright test --headed --project=chromium --debug"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@reductstore/reduct-query-monaco": "^1.0.1",
"ajv": "^8.18.0",
"chart.js": "^4.5.1",
"chartjs-adapter-dayjs-4": "^1.2.3",
"chartjs-plugin-zoom": "^2.2.0",
"json5": "^2.2.3",
"mime": "^4.1.0",
"monaco-editor": "^0.55.1",
"react-chartjs-2": "^5.3.1",
"zustand": "^5.0.12"
},
"overrides": {
"dompurify": "^3.3.3"
}
}