-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
118 lines (118 loc) · 3.46 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
109
110
111
112
113
114
115
116
117
118
{
"name": "t3-blog",
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate",
"typecheck": "tsc --noEmit",
"change-role": "node -r esbuild-register scripts/change-role.ts",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npx prettier --write",
"npx eslint --fix"
]
},
"dependencies": {
"@aws-sdk/client-s3": "^3.321.1",
"@aws-sdk/s3-presigned-post": "^3.321.1",
"@formkit/auto-animate": "^1.0.0-beta.6",
"@headlessui/react": "^1.7.13",
"@hookform/resolvers": "^2.9.11",
"@next-auth/prisma-adapter": "^1.0.5",
"@popperjs/core": "^2.11.6",
"@prisma/client": "^5.4.2",
"@radix-ui/react-hover-card": "^1.0.5",
"@t3-oss/env-nextjs": "^0.2.2",
"@tanstack/react-query": "^4.29.15",
"@trpc/client": "^10.32.0",
"@trpc/next": "^10.32.0",
"@trpc/react-query": "^10.32.0",
"@trpc/server": "^10.32.0",
"axios": "^1.3.4",
"clsx": "^1.2.1",
"date-fns": "^2.29.3",
"dompurify": "^3.0.1",
"file-saver": "^2.0.5",
"highlight.js": "^11.7.0",
"keen-slider": "^6.8.5",
"lodash.debounce": "^4.0.8",
"lodash.unescape": "^4.0.1",
"marked": "^4.3.0",
"metascraper": "^5.34.0",
"metascraper-amazon": "^5.33.7",
"metascraper-description": "^5.33.7",
"metascraper-image": "^5.33.7",
"metascraper-instagram": "^5.33.7",
"metascraper-logo-favicon": "^5.33.8",
"metascraper-publisher": "^5.33.7",
"metascraper-title": "^5.33.7",
"metascraper-twitter": "^5.33.7",
"metascraper-url": "^5.33.7",
"next": "12.2.0",
"next-auth": "^4.20.1",
"next-themes": "^0.2.1",
"next-use-contextual-routing": "^3.0.1",
"nodemailer": "^6.7.5",
"nprogress": "^0.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.33.0",
"react-icons": "^4.7.1",
"react-lottie": "^1.2.3",
"react-markdown-editor-lite": "^1.3.4",
"react-popper": "^2.3.0",
"react-toastify": "^9.1.1",
"rehype-highlight": "^6.0.0",
"rehype-rewrite": "^3.0.6",
"rehype-stringify": "^9.0.3",
"rehype-truncate": "^1.2.2",
"remark": "^14.0.2",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"superjson": "^1.9.1",
"uuid": "^9.0.0",
"validator": "^13.9.0",
"zod": "^3.17.3"
},
"devDependencies": {
"@tailwindcss/line-clamp": "^0.4.2",
"@tailwindcss/typography": "^0.5.9",
"@types/dompurify": "^3.0.0",
"@types/file-saver": "^2.0.5",
"@types/lodash.debounce": "^4.0.7",
"@types/lodash.unescape": "^4.0.7",
"@types/marked": "^4.0.8",
"@types/node": "18.0.0",
"@types/nodemailer": "^6.4.4",
"@types/nprogress": "^0.2.0",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@types/react-lottie": "^1.2.6",
"@types/uuid": "^9.0.1",
"@types/validator": "^13.7.13",
"autoprefixer": "^10.4.13",
"cssnano": "^5.1.15",
"esbuild": "^0.17.18",
"esbuild-register": "^3.4.2",
"eslint": "8.18.0",
"eslint-config-next": "12.1.6",
"husky": "^8.0.0",
"lint-staged": "^13.2.1",
"postcss": "^8.4.21",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.7",
"prisma": "^5.4.2",
"sass": "^1.58.3",
"tailwind-scrollbar": "^3.0.0",
"tailwindcss": "^3.2.7",
"typescript": "^5.0.2"
}
}