-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) ยท 1.56 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": "fitpet",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --fix --ext .js,.jsx,.ts,.tsx .",
"format": "prettier --write \"*.{js,jsx,ts,tsx,json,css,md}\"",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/react": "^2.8.2",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@tanstack/react-query": "^5.52.1",
"@tanstack/react-query-devtools": "^5.52.1",
"axios": "^1.7.7",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-tailwindcss": "^3.17.4",
"next": "14.2.6",
"prettier-plugin-tailwindcss": "^0.6.6",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.53.0",
"tailwindcss": "^3.4.10",
"zod": "^3.23.8"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.6",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^8.0.0",
"lint-staged": "^15.2.9",
"postcss": "^8",
"prettier": "^3.3.3",
"typescript": "^5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --cache --write"
]
},
"prettier": {
"plugins": [
"prettier-plugin-tailwindcss"
]
}
}