-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.39 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": "common-testing-library-mistakes",
"version": "1.0.0",
"main": "src/index.ts",
"license": "MIT",
"author": "Aleksei Tsikov",
"scripts": {
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"test": "jest",
"test:a": "jest src/a-await-sync-methods",
"test:b": "jest src/b-async-without-await",
"test:c": "jest src/c-faker-in-lists-regexps",
"test:d": "jest src/d-side-effects-in-waitFor",
"test:e": "jest src/e-unneeded-act"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@testing-library/react": "^12.0.0",
"@types/faker": "^5.5.8",
"@types/jest": "^27.0.1",
"@types/react": "^17.0.17",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"babel-jest": "^27.0.6",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"faker": "^5.5.3",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"react-test-renderer": "^17.0.2",
"typescript": "^4.3.5"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"jest": {
"testEnvironment": "jsdom"
}
}