-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.82 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
{
"name": "workshop_testing-react",
"version": "1.0.0",
"repository": "[email protected]:literat/workshop_testing-react.git",
"author": "literat <[email protected]>",
"license": "MIT",
"scripts": {
"jest": "jest --config ./config/jest/config.js --detectOpenHandles",
"test": "yarn jest",
"test:watch": "yarn jest --watch",
"test:coverage": "yarn jest --coverage",
"types": "tsc -p ./tsconfig.json",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.7",
"@testing-library/react-hooks": "^7.0.0",
"@types/jest": "^26.0.23",
"@types/node": "^14.14.20",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.0.1",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"eslint": "^7.17.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-wesbos": "2.0.0-beta.5",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.0.1",
"jest-each": "^27.0.1",
"jest-junit": "^12.1.0",
"prettier": "^2.2.1",
"react-test-renderer": "^17.0.2",
"typescript": "^4.1.3"
},
"dependencies": {
"axios": "^0.21.1",
"classnames": "^2.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}