-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
141 lines (141 loc) · 4.01 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
138
139
140
141
{
"name": "bg-react-ui",
"version": "0.1.0",
"private": true,
"browserslist": {
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"production": [
">0.2%",
"not dead",
"not op_mini all"
]
},
"dependencies": {
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@jsonforms/core": "^2.5.2",
"@jsonforms/material-renderers": "^2.5.2",
"@jsonforms/react": "^2.5.2",
"@mui/icons-material": "^5.8.4",
"@mui/lab": "^5.0.0-alpha.75",
"@mui/material": "^5.10.5",
"@mui/x-date-pickers": "^5.0.0-beta.3",
"@rjsf/core": "^4.2.0",
"@rjsf/material-ui": "^4.2.0",
"ajv": "^8.11.0",
"axios": "^0.26.1",
"axios-hooks": "^3.1.3",
"formik": "^2.2.9",
"jwt-decode": "^3.1.2",
"luxon": "^2.5.0",
"match-sorter": "^6.3.1",
"material-ui-popup-state": "^4.0.1",
"mui-file-dropzone": "^4.0.2",
"nanoid": "^3.3.1",
"node-polyfill-webpack-plugin": "^1.1.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-fast-compare": "^3.2.0",
"react-hook-form": "^7.43.9",
"react-json-view-lite": "^0.9.6",
"react-router-dom": "^6.2.2",
"react-scripts": "^5.0.1",
"react-table": "^7.8.0",
"swagger-ui-dist": "^3.52.5",
"typescript": "^4.7.4",
"universal-cookie": "^4.0.4",
"unstated-next": "^1.1.0",
"web-vitals": "^2.1.4",
"yup": "^0.32.11"
},
"devDependencies": {
"@axe-core/react": "^4.5.2",
"@babel/core": "^7.18.6",
"@babel/eslint-parser": "^7.18.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/lodash": "^4.14.180",
"@types/luxon": "^3.0.0",
"@types/node": "^17.0.21",
"@types/react": "^17.0.47",
"@types/react-dom": "^17.0.17",
"@types/react-table": "^7.7.12",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"axios-mock-adapter": "^1.21.1",
"babel-plugin-import": "^1.13.3",
"copy-webpack-plugin": "^11.0.0",
"customize-cra": "^1.0.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "^3.1.1",
"eslint-plugin-prettier": "^4.1.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-websocket-mock": "^2.4.0",
"lint-prepush": "^2.2.1",
"prettier": "^2.7.1",
"react-app-rewire-webpack-bundle-analyzer": "^1.1.0",
"react-app-rewired": "^2.2.1"
},
"lint-prepush": {
"base": "main",
"tasks": {
"*.{ts,tsx}": [
"eslint --fix"
]
}
},
"husky": {
"hooks": {
"pre-push": "lint-prepush"
}
},
"jest": {
"moduleNameMapper": {
"@rjsf/core/lib/utils": "@rjsf/core/dist/cjs/utils"
},
"coveragePathIgnorePatterns": [
"node_modules",
"index.ts",
"<rootDir>/src/test",
"<rootDir>/src/types"
],
"coverageThreshold": {
"global": {
"branches": 20,
"functions": 30,
"lines": 50,
"statements": 50
}
},
"coverageReporters": [
"text-summary",
"html"
]
},
"proxy": "http://localhost:2337",
"scripts": {
"build": "react-app-rewired build",
"eject": "react-scripts eject",
"lint": "eslint '*/**/*.{js,ts,tsx}'",
"lint-watch": "npx eslint-watch './src/**/*.{js,ts,tsx}' --ext '.tsx' --ext '.ts' --watch --color --clear",
"lint-fix": "eslint '*/**/*.{js,ts,tsx}' --fix",
"prepare": "husky install",
"start": "PORT=4000 BROWSER=none react-app-rewired start",
"test": "NODE_ENV=test CI=true react-app-rewired test",
"test-coverage": "NODE_ENV=test CI=true react-app-rewired test -- --coverage",
"test-watch": "NODE_ENV=test react-app-rewired test"
}
}