This repository was archived by the owner on Aug 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.55 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
{
"name": "redux-boilerplate-less-architecture",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.18.0",
"downshift": "^3.1.5",
"react": "^16.6.3",
"react-dom": "^16.6.1",
"react-redux": "^5.1.1",
"react-router-dom": "^4.2.2",
"react-spinners": "^0.4.7",
"redux": "^4.0.1",
"styled-components": "^4.1.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"test:watch": "react-scripts test --watch --env=jsdom",
"eject": "react-scripts eject",
"flow": "flow",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint --fix src/**/*.js",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,mjs}",
"!src/**/style.js",
"!src/types/**/*",
"!src/index.js",
"!src/store.js",
"!src/const.js",
"!src/testutil/**/*"
]
},
"devDependencies": {
"all-contributors-cli": "^5.4.1",
"eslint-config-react-app": "^3.0.5",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "^0.86.0",
"jest-dom": "^2.1.1",
"prettier": "^1.15.2",
"react-scripts": "^2.1.1",
"react-testing-library": "5.2.3"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}