-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
108 lines (108 loc) · 3.2 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "lost-and-found",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"postinstall": "prisma generate",
"lint": "next lint",
"start": "next start",
"prepare": "husky install",
"production": "npx prisma migrate deploy && node server.js",
"format": "prettier --write \"**/*.{js,mjs,cjs,ts,tsx,md,mdx}\"",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@headlessui/react": "^1.7.14",
"@heroicons/react": "^2.0.17",
"@hookform/resolvers": "^3.1.0",
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@next-auth/prisma-adapter": "^1.0.5",
"@next/bundle-analyzer": "^13.2.4",
"@next/mdx": "^13.4.3",
"@prisma/client": "^4.15.0",
"@react-three/drei": "^9.77.0",
"@react-three/fiber": "^8.13.3",
"@t3-oss/env-nextjs": "^0.2.2",
"@tanstack/react-query": "^4.28.0",
"@tanstack/react-table": "^8.9.3",
"@trpc/client": "^10.18.0",
"@trpc/next": "^10.18.0",
"@trpc/react-query": "^10.18.0",
"@trpc/server": "^10.18.0",
"aws-sdk": "^2.1408.0",
"axios": "^1.4.0",
"classnames": "^2.3.2",
"date-fns": "^2.29.3",
"feed": "^4.2.2",
"flowbite": "^1.6.5",
"flowbite-react": "^0.4.4",
"immer": "^10.0.2",
"inngest": "^2.7.2",
"next": "^13.4.1",
"next-auth": "4.20.1",
"next-pwa": "^5.6.0",
"next-s3-upload": "^0.3.0",
"next-seo": "^6.0.0",
"nextjs-progressbar": "^0.0.16",
"nodemailer": "^6.9.1",
"openai": "^3.2.1",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-highlight-words": "^0.20.0",
"react-hook-form": "^7.44.2",
"react-hot-toast": "^2.4.0",
"react-hotkeys-hook": "^4.4.1",
"react-infinite-scroll-component": "^6.1.0",
"react-medium-image-zoom": "^5.1.6",
"redis": "^4.6.7",
"sharp": "^0.32.6",
"spinners-react": "^1.0.7",
"superjson": "1.12.2",
"three": "^0.153.0",
"transliteration": "^2.3.5",
"trpc-panel": "^1.3.4",
"unique-names-generator": "^4.7.1",
"zod": "^3.21.4",
"zustand": "^4.3.8"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@types/eslint": "^8.21.3",
"@types/node": "^18.16.9",
"@types/prettier": "^2.7.2",
"@types/react": "^18.0.28",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "^18.0.11",
"@types/react-highlight-words": "^0.16.4",
"@types/three": "^0.152.1",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.37.0",
"eslint-config-next": "^13.4.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"postcss": "^8.4.21",
"prettier": "2.8.7",
"prettier-plugin-tailwindcss": "^0.2.6",
"prisma": "^4.15.0",
"tailwindcss": "^3.3.0",
"typescript": "^5.0.2"
},
"ct3aMetadata": {
"initVersion": "7.10.2"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}