-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.67 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
{
"name": "@hexlet/code",
"version": "2.0.0",
"description": "[Testing] @hexlet/react-todo-app-with-backend",
"keywords": [
"testing",
"react",
"msw",
"react-testing-library",
"todo-app",
"frontend-testing",
"jest",
"mocks"
],
"main": "__tests__/index.test.js",
"scripts": {
"test": "npx jest --colors",
"test-coverage": "npm test -- --coverage --coverageProvider=v8",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/PavelDeuce/react-todo-app-testing.git"
},
"author": "Pavel Deryugin (PavelDeuce)",
"license": "ISC",
"bugs": {
"url": "https://github.com/PavelDeuce/react-todo-app-testing/issues"
},
"homepage": "https://github.com/PavelDeuce/react-todo-app-testing#readme",
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/eslint-parser": "^7.14.4",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@jest/globals": "^26.6.2",
"@testing-library/dom": "^8.14.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^13.5.0",
"babel-jest": "^27.5.1",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-testing-library": "^5.5.1",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"msw": "^0.42.1",
"prettier": "^2.2.1"
},
"dependencies": {
"@hexlet/react-todo-app-with-backend": "^0.10.0",
"lodash": "^4.17.21"
}
}