-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 4.04 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 4.04 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "dashboard",
"version": "1.22.0",
"private": true,
"homepage": "/dashboard",
"dependencies": {
"@devtron-labs/devtron-fe-common-lib": "1.23.5-pre-3",
"@esbuild-plugins/node-globals-polyfill": "0.2.3",
"@sentry/browser": "7.119.1",
"@sentry/integrations": "7.50.0",
"@sentry/tracing": "7.50.0",
"@tippyjs/react": "4.2.6",
"@typeform/embed-react": "2.20.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"command-line-parser": "^0.2.10",
"compute-histogram": "^0.9.11",
"dayjs": "^1.11.13",
"dompurify": "^3.3.3",
"fast-json-patch": "^3.1.1",
"jsonpath-plus": "^10.3.0",
"moment": "^2.29.4",
"query-string": "^7.1.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-ga4": "3.0.1",
"react-gtm-module": "^2.0.11",
"react-router-dom": "6.30.3",
"react-select": "5.8.0",
"react-virtualized": "^9.22.5",
"rollup-plugin-node-polyfills": "0.2.1",
"rxjs": "^7.8.1",
"sockjs-client": "1.6.1",
"tippy.js": "^6.3.7",
"yaml": "^2.8.3"
},
"scripts": {
"prepare": "husky install",
"lint": "tsc --noEmit && eslint 'src/**/*.{js,jsx,ts,tsx}' --max-warnings 0",
"lint-fix": "eslint 'src/**/*.{js,jsx,ts,tsx}' --fix",
"start": "vite --open",
"dev": "node scripts/secrets-mgr.js",
"build": "NODE_OPTIONS=--max_old_space_size=8192 vite build",
"serve": "vite preview",
"build-light": "NODE_OPTIONS=--max_old_space_size=8192 GENERATE_SOURCEMAP=false vite build",
"build-k8s-app": "NODE_OPTIONS=--max_old_space_size=8192 GENERATE_SOURCEMAP=false VITE_K8S_CLIENT=true vite build",
"test": "vitest test",
"test-coverage:watch": "npm run test -- --coverage",
"test-coverage": "npm run test -- --coverage --watchAll=false",
"lint-staged": "lint-staged",
"postinstall": "patch-package"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@playwright/test": "^1.32.1",
"@sentry/cli": "^2.2.0",
"@tanstack/eslint-plugin-query": "^5.91.4",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-transition-group": "^4.4.4",
"@types/recompose": "^0.30.10",
"@typescript-eslint/eslint-plugin": "8.3.0",
"@typescript-eslint/parser": "8.3.0",
"@vitejs/plugin-react": "6.0.1",
"env-cmd": "10.1.0",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^7.0.4",
"json-schema": "^0.4.0",
"lint-staged": "12.5.0",
"mock-socket": "^9.2.1",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.1.1",
"react-draggable": "^4.4.5",
"sass": "^1.69.7",
"sharp": "^0.33.5",
"svgo": "^3.3.2",
"ts-node": "10.9.2",
"typescript": "5.5.4",
"vite": "8.0.8",
"vite-plugin-compression2": "2.4.0",
"vite-plugin-pwa": "1.2.0",
"vite-plugin-require-transform": "1.0.21",
"vite-plugin-svgr": "4.5.0"
},
"resolutions": {
"nanoid": "^3.3.8",
"rollup": "^4.22.4",
"path-to-regexp": "^1.9.0",
"cross-spawn": "^7.0.5",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"@emotion/react": "^11.14.0"
},
"packageManager": "yarn@4.9.2",
"overrides": {
"vite-plugin-svgr": {
"vite": "8.0.8"
}
}
}