-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.73 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
{
"name": "omni-ui",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.3",
"@react-pdf/renderer": "^1.6.8",
"@reduxjs/toolkit": "^1.4.0",
"accounting": "^0.4.1",
"axios": "^0.19.0",
"axios-mock-adapter": "^1.17.0",
"camelcase-keys": "^6.2.2",
"final-form": "^4.18.6",
"final-form-arrays": "^3.0.2",
"final-form-calculate": "^1.3.1",
"firebase": "^8.0.1",
"inflected": "^2.0.4",
"libphonenumber-js": "^1.7.52",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"mui-rff": "^3.0.13",
"path-to-regexp": "^6.1.0",
"react": "^16.12.0",
"react-color": "^2.19.3",
"react-dom": "^16.12.0",
"react-final-form": "^6.4.0",
"react-final-form-arrays": "^3.1.1",
"react-final-form-listeners": "^1.0.2",
"react-firebaseui": "^4.1.0",
"react-google-autocomplete": "^1.1.2",
"react-modal": "^3.11.1",
"react-paginate": "^6.3.2",
"react-quill": "^1.3.5",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.1",
"react-table": "^7.0.0-rc.15",
"react-tabs": "^3.1.0",
"react-text-mask": "^5.4.3",
"react-toast-notifications": "^2.4.0",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"rollbar": "^2.19",
"styled-components": "^4.4.1",
"styled-react-modal": "^2.0.0",
"text-mask-addons": "^3.8.0",
"uuid": "^8.1.0",
"yup": "^0.27.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "cross-env CI=true react-scripts test --testPathIgnorePatterns src/components/pages/dip_flow/__tests__/App.pdf.js src/components/pages/loan_facility/__tests__/App.pdf.js --verbose --colors --silent",
"test-updatesnapshot": "cross-env CI=true react-scripts test --testPathIgnorePatterns src/components/pages/dip_flow/__tests__/App.pdf.js src/components/pages/loan_facility/__tests__/App.pdf.js --verbose --colors --silent -u",
"lint": "eslint \"src/**/*.{js,jsx}\"",
"lint-fix": "eslint \"src/**/*.{js,jsx}\" --fix",
"rest": "json-server mock/db.js --routes mock/routes.json --port 3004 --static mock/public --middlewares mock/middlewares.js --id sOmniRestApi",
"deploy": "yarn install && yarn build"
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test"
}
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"eslint"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@hapi/joi": "^16.1.8",
"@testing-library/react": "^9.3.2",
"babel-jest": "^24.9.0",
"babel-plugin-macros": "^2.8.0",
"babel-plugin-styled-components": "^1.10.7",
"cross-env": "^6.0.3",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-better-styled-components": "^1.1.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.3.0",
"eslint-plugin-redux-saga": "^1.1.1",
"faker": "^4.1.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"json-server": "^0.12.2",
"lint-staged": "^9.4.3",
"mutationobserver-shim": "^0.3.7",
"prettier": "^2.0.5",
"react-test-renderer": "^16.12.0",
"redux-devtools": "^3.5.0"
},
"babelMacros": {
"styledComponents": {}
}
}