-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.79 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
{
"name": "next-experience",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "next start",
"dev": "next dev",
"dev:turbo": "next dev --turbo",
"build": "next build",
"lint": "next lint",
"pre-commit": "lint-staged",
"prepare": "husky install",
"ts:check": "tsc --noEmit",
"husky:init": "npx husky-init",
"server:start": "cd json-server && pnpm i && pnpm server:start",
"lint:fix": "next lint --fix",
"format": "prettier --write ./src/*"
},
"dependencies": {
"@hookform/resolvers": "^3.3.2",
"@nextui-org/react": "^2.2.9",
"@supabase/ssr": "^0.0.10",
"@supabase/supabase-js": "^2.39.1",
"framer-motion": "^10.16.16",
"next": "14.0.4",
"next-intl": "^3.4.0",
"next-themes": "^0.2.1",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.53.0",
"react-icons": "^4.12.0",
"react-magic-motion": "^1.0.9",
"react-toastify": "^9.1.3",
"sharp": "^0.32.6",
"sweetalert": "^2.1.2",
"yup": "^1.3.2"
},
"devDependencies": {
"@types/debug": "^4.1.8",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/experimental-utils": "^5.62.0",
"@typescript-eslint/parser": "^8.8.1",
"autoprefixer": "^10.0.1",
"eslint": "^8.57.1",
"eslint-config-next": "14.2.15",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tailwindcss": "^3.13.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.1",
"typescript": "^5.6.3"
}
}