-
Notifications
You must be signed in to change notification settings - Fork 82
/
package.json
37 lines (37 loc) · 1.06 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
{
"name": "06-test-react-components-with-jest-and-react-testing-library",
"version": "1.0.0",
"description": "Checkout individual branches for changes specific to that section of the course.",
"main": "index.js",
"scripts": {
"test": "is-ci 'test:all' 'test:watch'",
"test:all": "jest",
"test:watch": "npm run test:all -- --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"react": "16.6.3",
"react-dom": "16.6.3",
"react-router-dom": "4.3.1"
},
"devDependencies": {
"@babel/core": "7.1.6",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
"@babel/preset-env": "7.1.6",
"@babel/preset-react": "7.0.0",
"babel-core": "7.0.0-bridge.0",
"dom-testing-library": "3.12.4",
"is-ci-cli": "1.1.1",
"jest": "29.3.1",
"jest-axe": "3.1.0",
"jest-dom": "2.1.1",
"react-redux": "5.1.1",
"react-testing-library": "5.3.0",
"react-transition-group": "2.5.0",
"redux": "4.0.1",
"test-data-bot": "0.6.1"
}
}