forked from kentcdodds/react-testing-library-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·58 lines (58 loc) · 1.46 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
{
"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": {
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.0.10",
"axios": "^0.21.1",
"history": "^5.0.0",
"i18next": "20.0.0",
"i18next-browser-languagedetector": "6.1.0",
"i18next-xhr-backend": "3.2.2",
"intl": "^1.2.5",
"mq-polyfill": "^1.1.8",
"msw": "^0.27.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-i18next": "^11.8.10",
"react-intl": "^5.13.5",
"react-redux": "^7.2.3",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"react-transition-group": "^4.4.1",
"redux": "^4.0.5"
},
"devDependencies": {},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:coverage": "npm run test -- --coverage --watchAll=false"
},
"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"
]
}
}