-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.85 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
{
"name": "reactnd-project-readable",
"version": "0.1.0",
"author": "Filipe Natanael <filipenatanaeldemorais@gmail.com>",
"private": true,
"dependencies": {
"axios": "^0.18.0",
"chai": "^4.2.0",
"codecov": "^3.1.0",
"dotenv": "^6.2.0",
"lodash": "^4.17.11",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-material-ui-form-validator": "^2.0.3",
"react-redux": "^6.0.0",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"sinon": "^7.2.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"test:coverage": "react-scripts test --env=jsdom --verbose false --coverage",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"cov": "codecov --token=b42d8cb0-b3cf-4e8d-9777-8a35ed0b0d5e"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@material-ui/core": "^3.6.2",
"@material-ui/icons": "^3.0.1",
"prop-types": "^15.6.2",
"@storybook/react": "^4.0.12",
"@storybook/addon-actions": "^4.0.12",
"@storybook/addon-links": "^4.0.12",
"@storybook/addons": "^4.0.12",
"@babel/core": "^7.2.0",
"babel-loader": "^8.0.4",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!**/src/index.js",
"!**/node_modules/**",
"!**/src/helpers/*.{js,jsx}",
"!**/src/containers/*.{js,jsx}",
"!**/src/reducers/*.{js,jsx}",
"!**/src/actions/*.{js,jsx}",
"!**/src/stories/*.{js,jsx}",
"!**/src/serviceWorker.js"
]
}
}