forked from devtron-labs/dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.94 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
{
"name": "dashboard",
"version": "0.1.0",
"private": true,
"homepage": "/dashboard",
"dependencies": {
"@sentry/browser": "^7.3.1",
"@sentry/integrations": "^7.3.1",
"@sentry/tracing": "^7.3.1",
"@tippyjs/react": "^4.2.0",
"@types/marked": "^4.0.3",
"@types/react-select": "^5.0.1",
"ansi_up": "^5.1.0",
"command-line-parser": "^0.1.10",
"compute-histogram": "^0.9.11",
"fast-json-patch": "^3.1.1",
"flexsearch": "^0.6.32",
"http-proxy-middleware": "^2.0.4",
"marked": "^4.0.18",
"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-ga4": "^1.4.1",
"react-monaco-editor": "^0.33.0",
"react-router-dom": "^5.3.0",
"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",
"test": "react-app-rewired test --env=jest-environment-jsdom-sixteen",
"test-coverage:watch": "npm run test -- --coverage",
"test-coverage": "npm run test -- --coverage --watchAll=false",
"test:ci": "./node_modules/.bin/react-app-rewired test --env=jest-environment-jsdom-sixteen --watchAll=false --ci --coverage --reporters=default --reporters=jest-junit",
"eject": "react-app-rewired eject",
"jest": "jest"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@sentry/cli": "^2.2.0",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@types/chai": "^4.3.0",
"@types/jest": "^27.4.1",
"@types/mocha": "^9.1.0",
"@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",
"chai": "^4.3.6",
"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",
"mocha": "^9.2.2",
"node-sass": "^4.14.1",
"prettier": "^2.6.0",
"react-scripts": "3.2.0",
"react-test-render": "^1.1.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typescript": "^4.6.2",
"worker-loader": "3.0.8"
},
"jest": {
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**",
"!**/coverage/**",
"!**/serviceWorker.js",
"!**/index.js"
],
"setupFilesAfterEnv": [
"jest-extended"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn eslint"
}
},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "^5.15.0",
"**/@typescript-eslint/parser": "^5.15.0"
}
}