-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
116 lines (116 loc) · 3.15 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
{
"name": "dashboard",
"version": "0.1.0",
"main": "index.js",
"private": true,
"dependencies": {
"@babel/runtime": "^7.12.13",
"@emotion/styled": "^11.8.1",
"@material-ui/core": "^4.9.7",
"@material-ui/icons": "^4.5.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@ory/kratos-client": "1.1.0",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"axios": "^1.6.0",
"chroma-js": "^2.4.2",
"classnames": "^2.2.5",
"connected-react-router": "^6.9.2",
"copy-webpack-plugin": "^10.2.4",
"create-react-context": "^0.3.0",
"formik": "^2.2.9",
"highcharts": "^10.0.0",
"history": "^4.10.1",
"i18n-react": "^0.7.0",
"js-cookie": "^2.2.0",
"keycode": "^2.2.1",
"moment": "^2.29.4",
"node-sass": "^8.0.0",
"numeral": "^2.0.6",
"prettier": "^2.6.0",
"ramda": "^0.28.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-error-boundary": "^3.1.3",
"react-helmet": "^6.1.0",
"react-idle-timer": "^4.6.4",
"react-json-view": "^1.21.3",
"react-material-ui-form-validator": "^2.0.9",
"react-measure": "^2.5.2",
"react-redux": "^7.2.6",
"react-router-dom": "^5.1.2",
"react-router-redux": "^4.0.8",
"react-scripts": "5.0.0",
"react-select": "^5.2.2",
"react-simple-maps": "^2.3.0",
"reactstrap": "^9.0.1",
"redux": "^4.1.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.4.1",
"web-vitals": "^2.1.4",
"xstate": "^4.30.5",
"xterm": "^4.18.0",
"xterm-addon-attach": "^0.6.0",
"xterm-addon-fit": "^0.5.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^3.4.2",
"html-webpack-plugin": "^5.5.0",
"postcss-loader": "^2.0.8",
"react-hot-loader": "^4.12.18",
"sass": "^1.49.0",
"sass-lint": "^1.11.1",
"sass-loader": "^6.0.7",
"style-loader": "^0.18.2",
"webpack": "^5.76.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.3",
"webpack-merge": "^5.8.0"
},
"scripts": {
"clean": "rimraf dist/*",
"start": "webpack serve --open --config config/webpack.dev.js",
"build": "NODE_ENV=production webpack --progress --config config/webpack.prod.js",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "prettier --write 'src/**/*.*'",
"check-format": "prettier --check 'src/**/*.*'"
},
"engines": {
"node": ">=6.9.0",
"npm": ">= 3"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css,scss}": [
"eslint",
"prettier --write"
]
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}