-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.96 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
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "design-palace",
"version": "1.0.0",
"private": true,
"description": "Design Palace - Explore and buy thousands of seamless pattern and textile designs from the world's largest online collection of textile.",
"author": {
"name": "Karan Gandhi",
"email": "[email protected]"
},
"homepage": "https://design-palace.vercel.app/",
"bugs": {
"url": "https://github.com/karan0805/design-palace/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/karan0805/design-palace.git"
},
"license": "MIT",
"scripts": {
"dev": "next dev",
"start": "next start",
"lint": "next lint",
"format:write": "prettier --write \"**/*.{css,js,json,jsx,ts,tsx}\"",
"format": "prettier --check \"**/*.{css,js,json,jsx,ts,tsx}\"",
"migrate-dev": "prisma migrate dev",
"db-seed": "prisma db seed",
"build": "prisma generate && prisma migrate deploy && next build",
"prepare": "husky install"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.2.0",
"@tanstack/react-query": "^4.33.0",
"@tanstack/react-query-devtools": "^4.33.0",
"aos": "^2.3.4",
"axios": "^1.4.0",
"clsx": "^2.0.0",
"crypto-js": "^4.1.1",
"jsonwebtoken": "^9.0.1",
"next": "^13.4.19",
"next-auth": "^4.23.1",
"next-seo": "^6.1.0",
"nextjs-progressbar": "^0.0.16",
"nodemailer": "^6.9.4",
"react": "^18.2.0",
"react-animate-height": "^3.2.2",
"react-countdown": "^2.3.5",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.10.1",
"sharp": "^0.32.5",
"tailwind-merge": "^1.14.0",
"zod": "^3.22.2"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.5",
"@tailwindcss/typography": "^0.5.9",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/aos": "^3.0.4",
"@types/crypto-js": "^4.1.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "20.5.4",
"@types/nodemailer": "^6.4.14",
"@types/react": "18.2.21",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"autoprefixer": "^10.4.15",
"eslint": "8.47.0",
"eslint-config-next": "^13.4.19",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"mini-css-extract-plugin": "^2.7.6",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.28",
"prettier": "3.0.2",
"prettier-plugin-tailwindcss": "^0.5.3",
"prisma": "^5.2.0",
"start-server-and-test": "^2.0.0",
"tailwindcss": "^3.3.3",
"tsx": "^3.12.7",
"typescript": "5.1.6"
}
}