forked from vercel/platforms
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.63 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
{
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"format:write": "prettier --write \"**/*.{css,js,json,jsx,ts,tsx}\"",
"format": "prettier \"**/*.{css,js,json,jsx,ts,tsx}\"",
"lint": "next lint",
"prebuild": "prisma generate",
"predev": "prisma generate",
"prisma:migrate": "prisma migrate deploy",
"start": "next start",
"type-check": "tsc"
},
"dependencies": {
"@headlessui/react": "^1.4.3",
"@next-auth/prisma-adapter": "^1.0.1",
"@prisma/client": "^3.8.1",
"blurhash": "^1.1.4",
"clsx": "^1.1.1",
"cuid": "^2.1.8",
"date-fns": "^2.28.0",
"fs": "^0.0.1-security",
"gray-matter": "^4.0.3",
"js-cookie": "^3.0.1",
"next": "^12.0.11-canary.8",
"next-auth": "^4.1.2",
"next-mdx-remote": "^3.0.8",
"next-plausible": "^3.1.4",
"plaiceholder": "^2.2.0",
"react": "^17.0.2",
"react-confetti": "^6.0.1",
"react-dom": "^17.0.2",
"react-hot-toast": "^2.2.0",
"react-textarea-autosize": "^8.3.3",
"remark": "^14.0.2",
"remark-mdx": "^2.0.0-rc.2",
"sharp": "^0.29.3",
"sitemap": "^7.1.0",
"swr": "^1.1.2",
"use-debounce": "^7.0.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/line-clamp": "^0.3.1",
"@tailwindcss/typography": "^0.5.0",
"@types/js-cookie": "^3.0.1",
"@types/node": "^17.0.10",
"@types/react": "^17.0.40",
"@types/react-dom": "^17.0.11",
"autoprefixer": "^10.4.2",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"prisma": "^3.8.1",
"tailwindcss": "^3.0.15",
"typescript": "^4.6.2"
}
}