forked from kentcdodds/advanced-react-patterns-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.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
{
"name": "advanced-react-patterns-v2",
"version": "1.0.0",
"description": "The updated version of my advanced react component patterns course",
"keywords": [],
"homepage": "http://advanced-react-patterns.netlify.com/",
"main": "src/index.js",
"dependencies": {
"hoist-non-react-statics": "^2.5.5",
"jest-dom": "^1.5.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-loadable": "^5.4.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-testing-library": "^4.1.2",
"redux": "^4.0.0"
},
"devDependencies": {
"all-contributors-cli": "^5.2.1",
"cross-spawn": "^6.0.5",
"husky": "^0.14.3",
"inquirer": "^6.0.0",
"is-ci": "^1.1.0",
"node": "^8.11.1",
"npm-run-all": "^4.1.3",
"react-scripts": "2.0.0-next.b2fd8db8",
"replace-in-file": "^3.4.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"test:coverage": "npm run test -- --coverage",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"setup": "node ./scripts/verify && node ./scripts/install && npm run validate && node ./scripts/autofill-feedback-email.js",
"validate": "npm-run-all --parallel build test:coverage",
"precommit": "npm run validate"
},
"jest": {
"collectCoverageFrom": [
"src/exercises-final/**/*.js"
]
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 11"
]
}
}