-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·74 lines (74 loc) · 2.01 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
{
"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": "jest --coverage",
"test:watch": "jest --watch",
"lint": "kcd-scripts lint",
"precommit": "kcd-scripts precommit",
"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": {
"babel-core": "^7.0.0-bridge.0",
"dom-testing-library": "^3.5.0",
"history": "^4.7.2",
"jest": "^23.1.0",
"jest-axe": "^3.1.0",
"jest-dom": "^1.3.1",
"kcd-scripts": "^0.44.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-testing-library": "^5.0.1",
"react-transition-group": "^2.4.0",
"redux": "^4.0.0",
"test-data-bot": "^0.6.0"
},
"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"
}
},
"eslintIgnore": [
"node_modules",
"coverage"
],
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false,
"jsxBracketSameLine": false
},
"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"
}