generated from timlrx/tailwind-nextjs-starter-blog
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
92 lines (92 loc) · 2.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
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
{
"name": "thvu-blog",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "pnpm clean && TAILWIND_MODE=watch next dev",
"build": "next build && node ./scripts/generate-sitemap",
"clean": "rm -rf ./.next",
"serve": "next start",
"analyze": "env ANALYZE=true next build",
"prepare": "husky install",
"lint": "npx next lint",
"prisma:generate": "npx prisma generate",
"prisma:studio": "npx prisma studio",
"pscale:shadow": "pscale connect thvu-blog shadow --port 3310",
"pscale:main": "pscale connect thvu-blog main --port 3309",
"compose": "node ./scripts/compose.js"
},
"dependencies": {
"@headlessui/react": "^1.4.2",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@auth/prisma-adapter": "^1.4.0",
"@notionhq/client": "^1.0.4",
"@prisma/client": "3.15.2",
"@sentry/nextjs": "6.16.1",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.0",
"autoprefixer": "^10.4.0",
"canvas-confetti": "^1.5.1",
"date-fns": "^2.26.0",
"esbuild": "^0.14.0",
"gray-matter": "^4.0.2",
"image-size": "0.9.7",
"mdx-bundler": "^9.0.0",
"mdx-embed": "^0.0.22",
"next": "14.1.0",
"next-auth": "5.0.0-beta.16",
"next-pwa": "^5.4.1",
"next-seo": "4.28.1",
"next-themes": "0.1.1",
"postcss": "^8.4.4",
"react": "^18.2.0",
"react-datocms": "^1.6.3",
"react-dom": "^18.2.0",
"reading-time": "1.5.0",
"rehype-autolink-headings": "^6.1.0",
"rehype-prism-plus": "^1.1.3",
"rehype-slug": "^5.0.0",
"remark-code-titles": "0.1.2",
"remark-footnotes": "^2.0.0",
"remark-gfm": "^2.0.0",
"remark-slug": "6.1.0",
"swr": "^1.3.0",
"tailwindcss": "^3.0.0"
},
"devDependencies": {
"@next/bundle-analyzer": "11.1.2",
"@svgr/webpack": "^5.5.0",
"@types/canvas-confetti": "^1.4.2",
"@types/github-slugger": "^1.3.0",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.14",
"dedent": "^0.7.0",
"eslint": "^7.17.0",
"eslint-config-next": "^13.0.2",
"file-loader": "^6.0.0",
"globby": "11.0.1",
"husky": "^6.0.0",
"inquirer": "^8.1.5",
"lint-staged": "^10.5.3",
"next-compose-plugins": "^2.2.1",
"next-remote-watch": "^1.0.0",
"prettier": "2.2.1",
"prisma": "3.15.2",
"rehype": "11.0.0",
"remark-frontmatter": "3.0.0",
"remark-parse": "9.0.0",
"remark-stringify": "9.0.0",
"typescript": "^5.0.4",
"unified": "9.2.1",
"unist-util-visit": "4.0.0"
},
"lint-staged": {
"*.+(js|jsx|ts|tsx)": [
"eslint --fix"
],
"*.+(js|jsx|ts|tsx|json|css|md|mdx)": [
"prettier --write"
]
}
}