-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
136 lines (136 loc) · 4.7 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
{
"name": "consumer-app",
"version": "0.0.0",
"private": true,
"scripts": {
"setup:install": "npm install",
"setup:clean-install": "npm ci",
"setup:update": "npx npm-check -u",
"setup:clean": "npx rimraf node_modules",
"setup:clean-all": "npm run setup:clean && npx rimraf package-lock.json",
"start": "craco start",
"start:mock": "npx cross-env REACT_APP__MOCK_API='true' npm run start",
"build": "craco build",
"build:clean": "npx rimraf ./build && npx rimraf ./tsconfig.tsbuildinfo",
"build:analyze": "npx source-map-explorer 'build/static/js/*.js'",
"format": "prettier ./src --check",
"format:fix": "prettier ./src --write",
"lint": "eslint ./src --cache --ext .js,.jsx,.ts,.tsx --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"lint:clean": "npx rimraf ./.eslintcache",
"typecheck": "tsc --noEmit",
"test": "craco test",
"test:failed": "craco test --onlyFailures",
"check": "npm run format && npm run lint && npm run typecheck && npm run build && npm run test",
"clean": "npm run build:clean && npm run lint:clean",
"clean:all": "npm run clean && npm run setup:clean"
},
"msw": {
"workerDirectory": "public"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@devbookhq/splitter": "^1.2.4",
"@gjv/redux-slice-factory": "^0.9.2",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"@material-ui/styles": "^4.11.4",
"@nivo/axes": "^0.74.0",
"@nivo/bar": "^0.74.0",
"@nivo/bump": "^0.74.0",
"@nivo/core": "^0.74.0",
"@nivo/line": "^0.74.0",
"@nivo/pie": "^0.74.0",
"@nivo/treemap": "^0.74.0",
"@reduxjs/toolkit": "^1.6.2",
"@sentry/react": "^6.16.0",
"@sentry/tracing": "^6.16.0",
"@soos/analysis-openapi-client": "^19.3.1",
"@soos/users-openapi-client": "^19.3.1",
"axios": "^0.24.0",
"clsx": "^1.1.1",
"lodash.debounce": "^4.0.8",
"lodash.isequal": "^4.5.0",
"lodash.startcase": "^4.4.0",
"lodash.throttle": "^4.1.1",
"lodash.uniq": "^4.5.0",
"mdi-material-ui": "^6.22.1",
"msw": "^0.36.1",
"notistack": "^1.0.10",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-app-polyfill": "^2.0.0",
"react-dom": "^17.0.2",
"react-dropzone": "^11.4.2",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.21.0",
"react-joyride": "^2.3.2",
"react-query": "^3.34.5",
"react-redux": "^7.2.5",
"react-router": "^5.2.1",
"react-router-dom": "^5.3.0",
"react-router-hash-link": "^2.4.3",
"react-virtualized-auto-sizer": "^1.0.6",
"react-vtree": "^3.0.0-beta.3",
"react-window": "^1.8.6",
"react-window-infinite-loader": "^1.0.7",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"tslib": "^2.3.1",
"universal-cookie": "^4.0.4"
},
"devDependencies": {
"@craco/craco": "^6.4.2",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.4.1",
"@types/jest": "^27.0.3",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.isequal": "^4.5.5",
"@types/lodash.startcase": "^4.4.6",
"@types/lodash.throttle": "^4.1.6",
"@types/lodash.uniq": "^4.5.6",
"@types/node": "^16.11.12",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.9",
"@types/react-helmet": "^6.1.4",
"@types/react-router-dom": "^5.3.1",
"@types/react-router-hash-link": "^2.4.5",
"@types/react-virtualized-auto-sizer": "^1.0.1",
"@types/react-window": "^1.8.5",
"@types/react-window-infinite-loader": "^1.0.5",
"@types/redux-logger": "^3.0.9",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"craco-esbuild": "^0.4.2",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-import-helpers": "^1.2.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jest-dom": "^3.9.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^3.9.0",
"prettier": "^2.5.1",
"react-scripts": "4.0.3",
"typescript": "^4.5.2"
}
}