-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.77 KB
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
{
"name": "webkelas",
"version": "0.1.0",
"private": true,
"description": "Template website komunitas yang dapat dikustomisasi dari panel admin, dengan UI terinspirasi iOS dan Pinterest.",
"license": "MIT",
"packageManager": "npm@11.13.0",
"engines": {
"node": ">=22.12 <27",
"npm": ">=10.9 <12"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"check:member-slugs": "node scripts/check-member-slugs.mjs",
"check:media-formats": "node scripts/check-media-formats.mjs",
"audit:prod": "npm audit --omit=dev --audit-level=high"
},
"dependencies": {
"@supabase/ssr": "^0.12.0",
"@supabase/supabase-js": "^2.110.0",
"@tiptap/extension-image": "^3.27.1",
"@tiptap/extension-placeholder": "^3.27.1",
"@tiptap/extension-text-align": "^3.27.1",
"@tiptap/react": "^3.27.1",
"@tiptap/starter-kit": "^3.27.1",
"clsx": "^2.1.1",
"heic-to": "^1.5.2",
"jose": "^6.2.3",
"lucide-react": "^1.23.0",
"next": "^16.2.10",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"sanitize-html": "^2.17.6",
"server-only": "^0.0.1",
"tailwind-merge": "^3.6.0",
"tus-js-client": "4.3.1",
"ua-parser-js": "^2.0.10",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.20",
"@types/node": "^26.1.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/sanitize-html": "^2.16.1",
"@types/ua-parser-js": "^0.7.39",
"autoprefixer": "^10.5.2",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.10",
"postcss": "^8.5.16",
"tailwindcss": "^3.4.19",
"typescript": "^6.0.3"
},
"overrides": {
"next": {
"postcss": "8.5.17"
}
}
}