This repository has been archived by the owner on May 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.69 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
{
"name": "post-paper",
"description": "Productivity-oriented posting platform.",
"version": "0.1.0",
"license": "MIT",
"private": true,
"author": {
"email": "[email protected]",
"name": "Dominik Stumpf",
"url": "https://dominikstumpf.com"
},
"homepage": "https://post-paper.vercel.app/",
"repository": {
"type": "git",
"url": "https://github.com/dominik-stumpf/post-paper.git"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"build:wasm": "cd markdown-parser-rs && $HOME/.cargo/bin/wasm-pack build --target web",
"start": "next start",
"next-lint": "next lint",
"prepare": "husky install",
"apply-ci": "prettier --write . && biome check --apply-unsafe . && biome format --write .",
"gen-types": "source .env.local && npx supabase gen types typescript --project-id ${PROJECT_ID} > database.types.ts"
},
"dependencies": {
"@codemirror/lang-markdown": "^6.2.4",
"@codemirror/language": "^6.10.0",
"@codemirror/language-data": "^6.4.0",
"@codemirror/state": "^6.4.0",
"@codemirror/view": "^6.23.1",
"@hookform/resolvers": "^3.3.2",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-form": "^0.0.3",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-toggle": "^1.0.3",
"@radix-ui/react-toggle-group": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.7",
"@replit/codemirror-vim": "^6.1.0",
"@studio-freight/react-lenis": "^0.0.43",
"@supabase/auth-helpers-nextjs": "^0.8.7",
"@supabase/supabase-js": "^2.39.3",
"@t3-oss/env-nextjs": "^0.8.0",
"@uiw/codemirror-theme-gruvbox-dark": "^4.21.20",
"@uiw/react-codemirror": "^4.21.21",
"codemirror": "^6.0.1",
"geist": "^1.0.0",
"hast-util-to-jsx-runtime": "^2.0.0",
"immer": "^10.0.3",
"lucide-react": "^0.317.0",
"mdast-util-from-markdown": "^2.0.0",
"micromark": "^4.0.0",
"micromark-extension-frontmatter": "^2.0.0",
"micromark-extension-gfm": "^3.0.0",
"next": "^14.1.0",
"next-themes": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.47.0",
"react-markdown": "^9.0.0",
"rehype-highlight": "^7.0.0",
"rehype-react": "^8.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.0.0",
"unified": "^11.0.4",
"unist-util-visit": "^5.0.0",
"validator": "^13.11.0",
"vaul": "^0.9.0",
"vfile": "^6.0.0",
"zod": "^3.22.4",
"zustand": "^4.5.0"
},
"devDependencies": {
"@biomejs/biome": "latest",
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@tailwindcss/typography": "^0.5.10",
"@types/hast": "^3.0.0",
"@types/node": "^20.11.10",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/validator": "^13.11.8",
"autoprefixer": "^10.4.16",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"encoding": "^0.1.13",
"husky": "^9.0.6",
"lint-staged": "^15.2.0",
"postcss": "^8.4.31",
"prettier-plugin-tailwindcss": "^0.5.11",
"sharp": "^0.33.2",
"supabase": "^1.136.3",
"tailwind-merge": "^2.0.0",
"tailwindcss": "^3.3.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.2.2"
}
}