forked from informatici/openhospital-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.43 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
{
"name": "open-hospital",
"version": "0.1.0",
"private": true,
"dependencies": {
"@date-io/date-fns": "^1.3.13",
"@material-ui/core": "^4.10.0",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.56",
"@material-ui/pickers": "^3.2.10",
"@openapitools/openapi-generator-cli": "^1.0.15-4.3.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/classnames": "^2.2.10",
"@types/jest": "^24.9.1",
"@types/lodash.get": "^4.4.6",
"@types/lodash.has": "^4.5.6",
"@types/lodash.isempty": "^4.4.6",
"@types/lodash.set": "^4.3.6",
"@types/node": "^12.12.38",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@types/react-redux": "^7.1.8",
"@types/react-router": "^5.1.7",
"@types/react-router-dom": "^5.1.5",
"@types/yup": "^0.29.0",
"classnames": "^2.2.6",
"date-fns": "^2.16.1",
"env-cmd": "^10.1.0",
"filereader": "^0.10.3",
"formik": "^2.1.4",
"immer": "^8.0.1",
"lodash.get": "^4.4.2",
"lodash.has": "^4.5.2",
"lodash.isempty": "^4.4.0",
"lodash.set": "^4.3.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"rifm": "^0.12.0",
"sass": "^1.26.5",
"sass-loader": "^10.0.2",
"susy": "^2.2.14",
"typescript": "^3.7.5",
"yup": "^0.29.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"cypress:open": "cypress open",
"build:staging": "env-cmd -f .env.staging npm run build",
"build:api": "openapi-generator generate -i api/oh.yaml -g typescript-rxjs -c openapi-generator.config.json -o src/generated/",
"clear": "rm -rf ./.cache ./dist"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@pollyjs/adapter-xhr": "^5.0.0",
"@pollyjs/core": "^5.0.0",
"cypress": "^4.5.0",
"cypress-file-upload": "^4.1.1"
}
}