-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
102 lines (102 loc) · 2.59 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
{
"name": "acquity-fe",
"version": "0.1.0",
"private": true,
"dependencies": {
"@reduxjs/toolkit": "^1.0.4",
"@sentry/browser": "^5.7.1",
"@welldone-software/why-did-you-render": "^3.3.9",
"apexcharts": "^3.10.0",
"axios": "^0.19.0",
"bulma": "^0.7.5",
"bulma-extensions": "^6.2.7",
"date-fns": "^2.7.0",
"humps": "^2.0.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"node-sass": "^4.12.0",
"pluralize": "^8.0.0",
"prop-types": "^15.7.2",
"qs": "^6.9.0",
"react": "^16.10.2",
"react-apexcharts": "^1.3.3",
"react-async": "^8.0.0",
"react-countdown-now": "^2.1.1",
"react-dom": "^16.10.2",
"react-dropdown-select": "^3.6.3",
"react-fade-in": "^0.1.6",
"react-hook-form": "^3.23.18",
"react-loading-skeleton": "^1.2.0",
"react-lottie": "^1.2.3",
"react-modal": "^3.11.1",
"react-redux": "^7.1.1",
"react-router-dom": "^5.1.2",
"react-scripts": "3.2.0",
"react-scroll-to-bottom": "^2.0.0-master.f19b14d",
"react-timeago": "^4.4.0",
"react-toastify": "^5.4.0",
"react-truncate": "^2.4.0",
"recompose": "^0.30.0",
"redux": "^4.0.4",
"redux-persist": "^6.0.0",
"socket.io-client": "^2.3.0",
"zxcvbn": "^4.4.2"
},
"lint-staged": {
"**/*.{js,jsx}": [
"pretty-quick --staged",
"eslint --fix",
"git add",
"jest --bail --findRelatedTests"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"babel": {
"presets": [
"react-app"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^4.1.1",
"@testing-library/react": "^9.3.0",
"@types/jest": "^24.0.18",
"babel-eslint": "^10.0.3",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.1.2",
"husky": "^3.0.8",
"identity-obj-proxy": "^3.0.0",
"lint-staged": "^9.4.1",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"react-test-renderer": "^16.10.2"
}
}