This repository was archived by the owner on Jan 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.82 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
{
"name": "health-client",
"version": "2.0.0",
"description": "Health Dashboard",
"main": "main.js",
"dependencies": {
"@babel/preset-env": "^7.9.6",
"@material-ui/core": "^4.9.13",
"@material-ui/icons": "^4.9.1",
"@material-ui/styles": "^4.9.10",
"clsx": "^1.1.0",
"history": "^4.10.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"recharts": "^1.8.5",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"webpack-cli": "^3.3.11",
"snyk": "^1.316.2"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@michaelkohler/eslint-config-react": "^6.8.20",
"@michaelkohler/eslint-config-test": "^6.8.20",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"copy-webpack-plugin": "^5.1.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"eslint": "^6.8.0",
"eslint-loader": "^3.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.1.0",
"node-sass": "^4.13.1",
"prop-types": "^15.7.2",
"react-hot-loader": "^4.12.20",
"webpack": "^4.42.1",
"webpack-dev-server": "^3.10.3"
},
"scripts": {
"build": "./node_modules/webpack/bin/webpack.js --mode production",
"start": "webpack-dev-server --hot --progress --colors --inline --mode development",
"test": "jest",
"test:update": "jest --updateSnapshot",
"eslint": "eslint src tests",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"author": "Michael Kohler",
"license": "MIT",
"browserslist": [
"last 2 versions",
"> 1%",
"not ie <= 11",
"not ie_mob <= 11",
"not op_mini all",
"not dead"
],
"snyk": true
}