-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.17 KB
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
{
"name": "intermediate-project",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"fix-lint": "next lint --fix",
"format": "prettier --write ./src",
"postinstall": "husky install",
"prepare": "husky && husky install",
"husky": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --cache --write .",
"eslint --cache . --ext ts,tsx --fix --report-unused-disable-directives --max-warnings 0"
]
},
"dependencies": {
"@hookform/error-message": "^2.0.1",
"@mantine/core": "^7.12.2",
"@mantine/dates": "^7.12.1",
"@mantine/hooks": "^7.12.2",
"@mantine/modals": "^7.12.1",
"@mantine/notifications": "^7.12.2",
"axios": "^1.7.7",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"framer-motion": "^11.5.4",
"next": "^14.2.12",
"next-auth": "^4.24.7",
"path-to-regexp": "^0.1.10",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-draggable": "^4.4.6",
"react-easy-crop": "^5.0.8",
"react-hook-form": "^7.53.0",
"react-intersection-observer": "^9.13.1",
"sharp": "^0.33.5",
"tailwind-merge": "^2.5.2",
"tailwindcss": "^3.4.10",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"autoprefixer": "^10.4.20",
"eslint": "^8",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "14.2.6",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-react-refresh": "^0.4.7",
"husky": "^8.0.3",
"lint-staged": "^15.2.10",
"postcss": "^8.4.43",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.5",
"typescript": "^5.5.4"
}
}