-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 2.69 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
{
"name": "outfitsbio",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"clean": "git clean -xdf .next .turbo node_modules",
"dev": "next dev",
"format": "prettier --write . --ignore-path .gitignore",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore",
"start": "next start",
"typecheck": "tsc --noEmit",
"db:generate": "prisma generate --schema ./src/prisma/schema.prisma",
"db:push": "prisma push --schema ./src/prisma/schema.prisma"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.623.0",
"@aws-sdk/s3-request-presigner": "^3.623.0",
"@headlessui/react": "^2.1.2",
"@headlessui/tailwindcss": "^0.2.1",
"@hookform/resolvers": "^3.9.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@next/eslint-plugin-next": "^14.2.7",
"@prisma/client": "^5.15.1",
"@prisma/extension-accelerate": "^1.1.0",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-hover-card": "^1.1.1",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-select": "^2.1.1",
"@t3-oss/env-core": "^0.10.1",
"@t3-oss/env-nextjs": "^0.10.1",
"@tailwindcss/typography": "^0.5.13",
"@tanstack/react-query": "^5.51.9",
"@trpc/client": "^11.0.0-rc.466",
"@trpc/react-query": "^11.0.0-rc.466",
"@trpc/server": "^11.0.0-rc.466",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@vercel/analytics": "^1.3.1",
"axios": "^1.7.3",
"class-variance-authority": "^0.7.0",
"date-fns": "^3.6.0",
"eslint-plugin-react-hooks": "^4.6.2",
"framer-motion": "^11.3.28",
"install": "^0.13.0",
"lodash.debounce": "^4.0.8",
"lucide-react": "^0.424.0",
"net": "^1.0.2",
"next": "^14.2.4",
"next-auth": "^4.24.7",
"next-themes": "^0.3.0",
"nsfwjs": "^4.1.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-easy-crop": "^5.0.8",
"react-fast-marquee": "^1.6.5",
"react-hook-form": "^7.53.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.2.1",
"react-markdown": "^9.0.1",
"remark-gfm": "^4.0.0",
"superjson": "2.2.1",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"tls": "^0.0.1",
"vaul": "^0.9.1",
"web-push": "^3.6.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^20.14.9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/web-push": "^3.6.3",
"dotenv-cli": "^7.4.2",
"eslint": "^8.56.0",
"jiti": "^1.21.6",
"prettier": "^3.3.2",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.4",
"bad-words": "^4.0.0",
"prisma": "^5.15.1"
}
}