-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.41 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
{
"name": "youtube-react-testing-video2-config-jest-react-testing-library",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --dir src",
"test": "jest",
"test:ci": "jest --coverage --silent --ci",
"prepare": "husky install",
"prettier": "prettier {*,src/*,src/**/*} --write --ignore-unknown",
"lint-staged": "lint-staged"
},
"dependencies": {
"axios": "0.21.1",
"next": "11.1.0",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@testing-library/dom": "8.1.0",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "12.0.0",
"@testing-library/user-event": "13.2.1",
"@types/jest": "27.0.1",
"@types/react": "17.0.18",
"@typescript-eslint/eslint-plugin": "4.29.2",
"@typescript-eslint/parser": "4.29.2",
"eslint": "7.32.0",
"eslint-config-next": "11.1.0",
"eslint-plugin-jest": "24.4.0",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-testing-library": "4.11.0",
"husky": "7.0.1",
"identity-obj-proxy": "3.0.0",
"jest": "27.0.6",
"lint-staged": "11.1.2",
"msw": "0.34.0",
"prettier": "2.3.2",
"ts-jest": "27.0.5",
"typescript": "4.3.5",
"whatwg-fetch": "3.6.2"
},
"lint-staged": {
"*.(tsx|ts)": "eslint --cache --fix",
"*": "prettier --write --ignore-unknown"
}
}