-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
49 lines (49 loc) · 1.42 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
{
"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": {
"@material-ui/core": "4.12.2",
"@material-ui/data-grid": "4.0.0-alpha.34",
"next": "11.0.1",
"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": "26.0.24",
"@types/react": "17.0.15",
"@typescript-eslint/eslint-plugin": "4.28.4",
"@typescript-eslint/parser": "4.28.4",
"eslint": "7.31.0",
"eslint-config-next": "11.0.1",
"eslint-plugin-jest": "24.4.0",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-testing-library": "4.10.1",
"husky": "7.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "27.0.6",
"lint-staged": "11.1.1",
"prettier": "2.3.2",
"ts-jest": "27.0.4",
"typescript": "4.3.5"
},
"lint-staged": {
"*.(tsx|ts)": "eslint --cache --fix",
"*": "prettier --write --ignore-unknown"
}
}