-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.87 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
{
"name": "investment-app",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:9000",
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"bootstrap": "^4.4.1",
"connect-api-mocker": "^1.7.0",
"cors": "^2.8.5",
"dompurify": "^2.0.8",
"express": "^4.17.1",
"lodash": "^4.17.15",
"npm-run-all": "^4.1.5",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3",
"react-router-dom": "4.3.1",
"react-router-redux": "^4.0.8",
"react-scripts": "3.4.0",
"react-uuid": "^1.0.2",
"reactstrap": "^8.4.1",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"request": "^2.88.2",
"reselect": "^4.0.0",
"styled-components": "^5.0.1"
},
"scripts": {
"dev": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"lint": "npm run lint:eslint",
"lint:eslint": "eslint './src/**/*.js*'",
"lint:eslint:fix": "eslint './src/**/*.js*' --fix",
"eject": "react-scripts eject",
"mock-api": "node ./server.js",
"start": "run-p mock-api dev"
},
"eslintConfig": {
"extends": "react-app",
"plugins": [
"react-hooks"
],
"rules": {
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0"
}
}