forked from Hussseinkizz/next-app
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.09 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
{
"name": "next-app",
"version": "0.1.0",
"private": true,
"description": "Next js 13, TypeScript And Tailwind CSS Starter",
"repository": "https://github.com/Hussseinkizz/next-app",
"author": "Hussein Kizz",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"lint": "next lint",
"lint-fix": "next lint --fix",
"vercel-deploy": "vercel --prod",
"make-out": "next build && next export",
"disable-next-tracking": "next telemetry disable",
"next-tracking-status": "next telemetry status",
"pre-commit": "lint-staged",
"prepare": "husky install"
},
"dependencies": {
"@formkit/auto-animate": "^1.0.0-beta.6",
"@headlessui/react": "^1.7.14",
"@hookform/resolvers": "^3.1.0",
"axios": "^1.4.0",
"daisyui": "^2.51.6",
"encodeurl": "^1.0.2",
"flowbite": "^1.6.5",
"flowbite-react": "^0.4.4",
"nanoid": "^4.0.2",
"next": "13.4.1",
"next-pwa": "^5.6.0",
"next-seo": "^6.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hands": "^1.0.5",
"react-hook-form": "^7.43.9",
"react-icons": "^4.8.0",
"react-query": "^3.39.3",
"react-recipes": "^1.5.0",
"react-reveal": "^1.2.2",
"react-toastify": "^9.1.2",
"react-use": "^17.4.0",
"tailwindcss": "3.3.2",
"usehooks-ts": "^2.9.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@types/node": "20.1.0",
"@types/react": "18.2.6",
"@types/react-dom": "18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"autoprefixer": "10.4.14",
"eslint": "8.40.0",
"eslint-config-next": "13.4.1",
"husky": "^8.0.0",
"lint-staged": "^13.2.2",
"postcss": "8.4.23",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^8.3.2",
"prettier-plugin-tailwindcss": "^0.2.8",
"sass": "^1.62.1",
"typescript": "5.0.4"
}
}