forked from devtron-labs/dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
137 lines (137 loc) · 4.6 KB
/
package.json
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "dashboard",
"version": "0.1.0",
"private": true,
"homepage": "/dashboard",
"dependencies": {
"@devtron-labs/devtron-fe-common-lib": "0.0.33",
"@sentry/browser": "^7.3.1",
"@sentry/integrations": "^7.3.1",
"@sentry/tracing": "^7.3.1",
"@tippyjs/react": "^4.2.0",
"@typeform/embed-react": "^2.15.0",
"@types/marked": "^4.0.8",
"@types/react-select": "^5.0.1",
"ansi_up": "^5.1.0",
"command-line-parser": "^0.1.10",
"compute-histogram": "^0.9.11",
"dompurify": "^3.0.2",
"fast-json-patch": "^3.1.1",
"flexsearch": "^0.6.32",
"http-proxy-middleware": "^2.0.4",
"marked": "^4.3.0",
"moment": "^2.29.4",
"monaco-editor": "^0.19.3",
"monaco-editor-webpack-plugin": "^1.8.2",
"monaco-yaml": "^3.2.1",
"patternfly-react": "^2.40.0",
"query-string": "^7.1.1",
"react": "^17.0.2",
"react-app-rewired": "^2.2.1",
"react-csv": "^2.2.2",
"react-dates": "^21.8.0",
"react-dom": "^17.0.2",
"react-draggable": "^4.4.5",
"react-ga4": "^1.4.1",
"react-gtm-module": "^2.0.11",
"react-keybind": "^0.9.4",
"react-mde": "^11.5.0",
"react-monaco-editor": "^0.33.0",
"react-router-dom": "^5.3.4",
"react-select": "^5.2.2",
"react-toastify": "^8.2.0",
"react-virtualized": "^9.22.3",
"recharts": "^2.1.9",
"rxjs": "^7.5.4",
"xterm": "^4.19.0",
"xterm-addon-fit": "^0.5.0",
"xterm-addon-search": "^0.9.0",
"xterm-webfont": "^2.0.0",
"yaml": "^1.7.2",
"yamljs": "^0.3.0"
},
"scripts": {
"lint": "eslint src/**/*.tsx",
"lint-fix": "eslint --fix src/**/*.tsx",
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"build-light": "GENERATE_SOURCEMAP=false react-app-rewired build",
"build-k8s-app": "GENERATE_SOURCEMAP=false REACT_APP_K8S_CLIENT=true react-app-rewired build",
"test": "react-app-rewired test",
"test-coverage:watch": "npm run test -- --coverage",
"test-coverage": "npm run test -- --coverage --watchAll=false",
"test:ci": "./node_modules/.bin/react-app-rewired test --watchAll=false --ci --json --coverage --testLocationInResults --outputFile=report.json",
"eject": "react-app-rewired eject",
"jest": "jest"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@playwright/test": "^1.32.1",
"@sentry/cli": "^2.2.0",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/react": "17.0.39",
"@types/react-csv": "^1.1.3",
"@types/react-dom": "17.0.13",
"@types/react-router-dom": "^5.3.3",
"@types/react-transition-group": "^4.4.4",
"@types/recharts": "^1.8.23",
"@types/recompose": "^0.30.10",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"env-cmd": "10.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest-extended": "^2.0.0",
"jest-junit": "^13.0.0",
"jsdom-worker": "^0.2.1",
"mock-socket": "^9.2.1",
"prettier": "^2.6.0",
"react-scripts": "3.2.0",
"react-test-render": "^1.1.2",
"sass": "^1.55.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typescript": "^4.6.2",
"worker-loader": "3.0.8"
},
"jest": {
"collectCoverageFrom": [
"**/*.{ts,tsx,js,jsx}",
"!**/?(*.)+(mock).+(ts|js)",
"!**/node_modules/**",
"!**/coverage/**",
"!**/serviceWorker.ts",
"!**/index.tsx",
"!**/setupProxy.js"
],
"setupFilesAfterEnv": [
"jest-extended"
],
"moduleNameMapper": {
"monaco-editor": "<rootDir>/node_modules/react-monaco-editor",
"monaco-yaml": "<rootDir>/node_modules/react-monaco-editor"
}
},
"husky": {
"hooks": {
"pre-commit": "yarn eslint"
}
},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "^5.15.0",
"**/@typescript-eslint/parser": "^5.15.0",
"react-error-overlay": "6.0.9"
}
}