-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.04 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
{
"name": "react-testing-library-examples",
"version": "1.0.0",
"description": "A repo full of examples of how to use react-testing-library and test your react components",
"keywords": [],
"main": "src/index.js",
"dependencies": {
"axios": "^0.18.0",
"history": "^4.7.2",
"jest-dom": "^3.0.0",
"react": "16.8.1",
"react-dom": "16.8.1",
"react-scripts": "^2.1.1",
"react-testing-library": "5.5.3"
},
"devDependencies": {},
"scripts": {
"start": "react-scripts start",
"test": "react-scripts test",
"build": "react-scripts build",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"babel": {
"presets": [
"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"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
}
}