-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.38 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "umc-landingpage",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:mocking": "NEXT_PUBLIC_MOCKING=true next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src --ext ts,tsx,js,jsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint src --ext js,jsx,ts,tsx --fix",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,html}'",
"fix": "eslint src --ext js,jsx,ts,tsx --fix && prettier --write 'src/**/*.{js,jsx,ts,tsx,css,html}'",
"prepare": "husky install"
},
"dependencies": {
"@commitlint/config-conventional": "^19.5.0",
"@hookform/resolvers": "^3.9.1",
"@tanstack/react-query": "^5.59.13",
"@tanstack/react-query-devtools": "^5.59.13",
"@tanstack/react-query-next-experimental": "^5.59.13",
"axios": "^1.7.7",
"framer-motion": "^11.11.11",
"next": "14.2.15",
"next-auth": "^4.24.8",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.53.1",
"react-icons": "^5.3.0",
"swiper": "^11.1.14",
"zod": "^3.23.8",
"zustand": "^5.0.0-rc.2"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^14.2.15",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-import-name": "^1.2.3",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-stylelint": "^0.1.1",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-typescript-sort-keys": "^3.3.0",
"husky": "^8.0.0",
"lint-staged": "^15.2.10",
"msw": "^2.4.10",
"postcss": "^8",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwind-merge": "^2.5.3",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"msw": {
"workerDirectory": [
"public"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn run lint && yarn run format"
}
},
"lint-staged": {
"src/**/*.{ts,tsx,js,jsx}": [
"yarn run lint",
"yarn run format"
]
}
}