-
Notifications
You must be signed in to change notification settings - Fork 108
/
package.json
79 lines (79 loc) · 2.25 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
{
"name": "vibey",
"proxy": "http://localhost:3000",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"lint:strict": "eslint --max-warnings=0 src",
"typecheck": "tsc --noEmit --incremental false",
"format": "prettier -w .",
"format:check": "prettier -c .",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "^1.7.15",
"@hookform/resolvers": "^3.1.1",
"@types/react-scroll": "^1.8.7",
"algoliasearch": "^4.18.0",
"appwrite": "^11.0.0",
"clsx": "^1.2.1",
"js-cookie": "^3.0.5",
"lucide-react": "^0.263.1",
"next": "13.4.9",
"next-auth": "^4.22.1",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.45.1",
"react-icons": "^4.10.1",
"react-instantsearch-dom": "^6.40.1",
"react-modal": "^3.16.1",
"react-scroll": "^1.8.9",
"react-tabs": "^6.0.1",
"react-toastify": "^9.1.3",
"tailwind-merge": "^1.13.2",
"typescript": "5.1.6",
"zod": "^3.21.4"
},
"devDependencies": {
"@svgr/webpack": "^8.0.1",
"@tailwindcss/typography": "^0.5.9",
"@types/js-cookie": "^3.0.3",
"@types/next-auth": "^3.15.0",
"@types/node": "20.8.10",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"@types/react-instantsearch-core": "^6.26.3",
"@types/react-instantsearch-dom": "^6.12.3",
"@types/react-modal": "^3.16.0",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.2",
"eslint": "^8.44.0",
"eslint-config-next": "^13.4.9",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"postcss": "^8.4.25",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.3.0",
"tailwindcss": "^3.3.2"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --max-warnings=0",
"prettier -w"
],
"**/*.{json,css,scss,md,webmanifest}": [
"prettier -w"
]
}
}