-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.77 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
60
61
62
63
64
{
"name": "dog-breed-finder",
"version": "1.0.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test:dev": "jest --watch",
"test": "jest ",
"test:cov": "jest --coverage",
"cypress": "cypress open",
"lint": "eslint ./src/**/*.{ts,tsx} --max-warnings=0",
"lint:fix": "yarn lint --fix",
"postinstall": "husky install",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint ./src/**/*.{ts,tsx} --max-warnings=0 --fix",
"jest --passWithNoTests --bail"
]
},
"dependencies": {
"autoprefixer": "10.4.14",
"axios": "1.4.0",
"next": "13.4.13",
"postcss": "8.4.27",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.3"
},
"devDependencies": {
"@next/eslint-plugin-next": "13.4.13",
"@swc/core": "1.3.75",
"@swc/jest": "0.2.28",
"@testing-library/dom": "9.3.1",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.2.0",
"@types/axios": "0.14.0",
"@types/jest": "29.5.3",
"@types/node": "20.4.8",
"@types/react": "18.2.18",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "5.31.0",
"@typescript-eslint/parser": "5.31.0",
"cypress": "10.1.0",
"eslint": "8.20.0",
"eslint-config-next": "12.2.3",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.3",
"jest": "28.1.1",
"jest-environment-jsdom": "28.1.1",
"jest-matcher-css": "1.1.0",
"lint-staged": "13.2.3",
"prettier": "2.7.1",
"ts-node": "10.9.1",
"typescript": "5.1.6"
}
}