forked from shadcn-ui/taxonomy
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
120 lines (120 loc) · 3.61 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
119
120
{
"name": "taxonomy-sanity",
"version": "0.1.0",
"private": true,
"author": {
"name": "Rooted Template - Taxonomy + Sanity",
"url": "https://twitter.com/shadcn"
},
"scripts": {
"build": "next build",
"dev": "next dev",
"format": "npx prettier --write . --ignore-path .gitignore",
"postinstall": "prisma generate",
"lint": "next lint",
"lint:fix": "npm run format && npm run lint -- --fix",
"preview": "next build && next start",
"start": "next start",
"turbo": "next dev --turbo",
"type-check": "tsc --noEmit"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"dependencies": {
"@editorjs/code": "^2.7.0",
"@editorjs/editorjs": "^2.25.0",
"@editorjs/embed": "^2.5.3",
"@editorjs/header": "^2.6.2",
"@editorjs/inline-code": "^1.3.1",
"@editorjs/link": "^2.4.1",
"@editorjs/list": "^1.7.0",
"@editorjs/paragraph": "^2.8.0",
"@editorjs/table": "^2.0.4",
"@headlessui/react": "^1.7.7",
"@hookform/resolvers": "^2.9.10",
"@next-auth/prisma-adapter": "^1.0.4",
"@next/font": "^13.0.3",
"@portabletext/react": "^2.0.0",
"@prisma/client": "^4.5.0",
"@radix-ui/react-alert-dialog": "^1.0.2",
"@radix-ui/react-avatar": "^1.0.1",
"@radix-ui/react-dropdown-menu": "^2.0.1",
"@radix-ui/react-popover": "^1.0.2",
"@radix-ui/react-toggle": "^1.0.0",
"@sanity/icons": "^2.1.0",
"@sanity/image-url": "^1.0.1",
"@sanity/orderable-document-list": "^1.0.2",
"@sanity/ui": "^1.0.2",
"@sanity/vision": "^3.0.6",
"@vercel/analytics": "^0.1.3",
"@vercel/og": "^0.0.21",
"classnames": "^2.3.2",
"clsx": "^1.2.1",
"contentlayer": "^0.2.9",
"date-fns": "^2.29.3",
"intl-segmenter-polyfill": "^0.4.4",
"lucide-react": "^0.92.0",
"next": "^13.1.0",
"next-auth": "^4.18.7",
"next-contentlayer": "^0.2.9",
"next-sanity": "^3.1.4",
"nodemailer": "^6.8.0",
"postmark": "^3.0.14",
"prop-types": "^15.8.1",
"raw-body": "^2.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-editor-js": "^2.1.0",
"react-hook-form": "^7.38.0",
"react-hot-toast": "^2.4.0",
"react-icons": "^4.7.1",
"react-is": "^18.2.0",
"react-textarea-autosize": "^8.3.4",
"sanity": "^3.1.4",
"sanity-plugin-asset-source-unsplash": "^1.0.1",
"satori": "0.0.44",
"server-only": "^0.0.1",
"sharp": "^0.31.1",
"shiki": "^0.11.1",
"speakingurl": "^14.0.1",
"stripe": "^11.1.0",
"styled-components": "^5.3.6",
"suspend-react": "^0.0.8",
"tailwind-merge": "^1.6.2",
"tailwindcss-animate": "^1.0.5",
"zod": "^3.19.1"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@tailwindcss/typography": "^0.5.7",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/node": "^18.11.9",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.6",
"@types/styled-components": "^5.1.26",
"autoprefixer": "^10.4.13",
"eslint": "8.29.0",
"eslint-config-next": "^13.0.6",
"eslint-plugin-simple-import-sort": "^8.0.0",
"husky": "^8.0.2",
"mdast-util-toc": "^6.1.0",
"postcss": "^8.4.20",
"prettier": "^2.8.1",
"prettier-plugin-packagejson": "^2.3.0",
"prettier-plugin-tailwindcss": "^0.2.1",
"pretty-quick": "^3.1.3",
"prisma": "^4.5.0",
"rehype": "^12.0.1",
"rehype-autolink-headings": "^6.1.1",
"rehype-pretty-code": "^0.5.0",
"rehype-slug": "^5.1.0",
"remark": "^14.0.2",
"remark-gfm": "^3.0.1",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4",
"unist-util-visit": "^4.1.1"
}
}