-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
99 lines (99 loc) · 3.01 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
{
"name": "oneimage",
"version": "0.4.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint . --fix",
"pages:build": "npx @cloudflare/next-on-pages",
"typecheck": "tsc --noEmit --incremental false",
"prepare": "husky",
"release": "bumpp -r"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/modifiers": "^7.0.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hookform/resolvers": "^3.9.0",
"@pdf-lib/upng": "^1.0.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-menubar": "^1.1.1",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@radix-ui/react-tooltip": "^1.1.2",
"@tiptap/core": "^2.8.0",
"@tiptap/extension-blockquote": "^2.8.0",
"@tiptap/extension-bold": "^2.6.4",
"@tiptap/extension-bullet-list": "^2.6.4",
"@tiptap/extension-code": "^2.8.0",
"@tiptap/extension-code-block": "^2.10.2",
"@tiptap/extension-document": "^2.6.4",
"@tiptap/extension-hard-break": "^2.8.0",
"@tiptap/extension-history": "^2.7.2",
"@tiptap/extension-horizontal-rule": "^2.8.0",
"@tiptap/extension-image": "^2.6.4",
"@tiptap/extension-italic": "^2.6.6",
"@tiptap/extension-list-item": "^2.6.4",
"@tiptap/extension-ordered-list": "^2.6.4",
"@tiptap/extension-paragraph": "^2.6.4",
"@tiptap/extension-placeholder": "^2.6.4",
"@tiptap/extension-text": "^2.6.4",
"@tiptap/extension-underline": "^2.6.4",
"@tiptap/pm": "^2.6.6",
"@tiptap/react": "^2.6.4",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dompurify": "^3.1.6",
"embla-carousel-react": "^8.2.0",
"exifreader": "^4.23.3",
"file-saver": "^2.0.5",
"html-react-parser": "^5.1.12",
"html2canvas": "^1.4.1",
"jszip": "^3.10.1",
"lucide": "^0.428.0",
"lucide-react": "^0.428.0",
"next": "14.2.5",
"png-metadata": "^1.0.2",
"react": "^18.3.1",
"react-dom": "^18",
"react-hook-form": "^7.53.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"tss-react": "^4.9.13",
"zod": "^3.23.8",
"zustand": "5.0.0-rc.2"
},
"devDependencies": {
"@byodian/eslint-config-react": "^0.1.6",
"@cloudflare/next-on-pages": "^1.13.2",
"@types/dompurify": "^3.0.5",
"@types/file-saver": "^2.0.7",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/upng-js": "^2.1.5",
"bumpp": "^9.7.1",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"vercel": "39.1.1"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"pnpm run lint:fix"
]
}
}