forked from openimis/openimis-fe_js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.66 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
{
"name": "@openimis/fe",
"version": "23.04",
"license": "AGPL-3.0-only",
"proxy": "http://localhost:8000",
"homepage": "http://localhost:3000/front",
"dependencies": {
"@date-io/core": "^1.3.13",
"@date-io/moment": "^1.3.13",
"@material-ui/core": "^4.9.14",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.58",
"@material-ui/pickers": "^3.2.10",
"classnames": "^2.2.6",
"clsx": "^1.1.1",
"lodash": "^4.17.15",
"lodash-uuid": "^0.0.3",
"moment": "^2.25.3",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-autosuggest": "^10.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-intl": "^5.8.1",
"react-redux": "^7.2.0",
"react-scripts": "4.0.3",
"redux": "^4.0.5",
"redux-api-middleware": "^3.2.1",
"redux-thunk": "^2.3.0",
"shelljs": "^0.8.4"
},
"resolutions": {
"caniuse-lite": "1.0.30001632"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"load-config": "node ./openimis-config.js",
"postinstall": "node script/postinstall.js",
"format": "prettier src -w",
"check-package": "node script/check-package.js"
},
"eslintConfig": {
"extends": [
"react-app"
],
"rules": {
"space-before-function-paren": 0,
"react/jsx-boolean-value": 0
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"http-proxy-middleware": "^2.0.1",
"prettier": "^2.3.2"
}
}