-
Notifications
You must be signed in to change notification settings - Fork 379
/
package.json
85 lines (85 loc) · 2.29 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "react-testing-library-course",
"version": "1.0.0",
"private": true,
"description": "Course material for testing React components using react-testing-library",
"main": "index.js",
"scripts": {
"test": "kcd-scripts test",
"lint": "kcd-scripts lint",
"validate": "kcd-scripts validate",
"setup": "npm install --silent && npm run validate --silent"
},
"keywords": [],
"author": "Kent C. Dodds <[email protected]> (http://kentcdodds.com/)",
"license": "MIT",
"dependencies": {
"@reach/router": "^1.3.4",
"@testing-library/dom": "^7.28.1",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/react-hooks": "^3.4.2",
"@testing-library/user-event": "^12.4.0",
"history": "^5.0.0",
"jest": "^26.6.3",
"jest-axe": "^4.1.0",
"kcd-scripts": "^7.5.1",
"msw": "^0.24.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-test-renderer": "^17.0.1",
"react-transition-group": "^4.4.1",
"redux": "^4.0.5",
"test-data-bot": "^0.8.0",
"whatwg-fetch": "^3.5.0"
},
"husky": {
"hooks": {
"pre-commit": "kcd-scripts pre-commit"
}
},
"babel": {
"presets": [
"kcd-scripts/babel"
]
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js",
"rules": {
"import/prefer-default-export": "off",
"jsx-a11y/label-has-for": "off",
"react/prop-types": "off",
"import/no-unassigned-import": "off",
"no-console": "off",
"jsx-a11y/accessible-emoji": "off",
"consistent-return": "off"
}
},
"eslintIgnore": [
"node_modules",
"coverage",
"@types"
],
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false,
"jsxBracketSameLine": false,
"proseWrap": "always"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kentcdodds/react-testing-library-course.git"
},
"bugs": {
"url": "https://github.com/kentcdodds/react-testing-library-course/issues"
},
"homepage": "https://github.com/kentcdodds/react-testing-library-course#readme"
}