-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
48 lines (48 loc) · 1.21 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-tdd-guide",
"version": "1.0.0",
"description": "A guide on how to TDD React components",
"main": "index.js",
"scripts": {
"basics": "jest basics/test",
"event-handling": "jest event-handling/test",
"lint": "eslint \"**/*.js\"",
"state": "jest state/test",
"test": "npm run lint && jest"
},
"repository": {
"type": "git",
"url": "https://github.com/zpratt/react-tdd-guide.git"
},
"keywords": [
"react",
"tdd",
"guide"
],
"jest": {
"testEnvironment": "jsdom"
},
"author": "zach pratt <zach@modzed.io> (https://zpratt.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zpratt/react-tdd-guide/issues"
},
"homepage": "https://github.com/zpratt/react-tdd-guide",
"devDependencies": {
"@babel/core": "7.14.3",
"@babel/plugin-transform-runtime": "7.14.3",
"@babel/preset-env": "7.14.2",
"@babel/preset-react": "7.13.13",
"@jest/globals": "^27.0.1",
"@testing-library/react": "^11.2.7",
"chance": "^1.1.7",
"eslint": "^3.11.1",
"eslint-config-rcoy-v": "^2.0.0",
"jest": "^27.0.1",
"prop-types": "^15.7.2",
"react-dom": "^17.0.2"
},
"dependencies": {
"react": "^17.0.2"
}
}