-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.39 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
64
65
66
67
68
69
{
"name": "subeom-dev",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"sync:posts": "ts-node --transpile-only --compiler-options '{\"module\":\"commonjs\",\"moduleResolution\":\"node\",\"jsx\":\"react\"}' scripts/sync-posts.ts",
"sync:projects": "ts-node --transpile-only --compiler-options '{\"module\":\"commonjs\",\"moduleResolution\":\"node\",\"jsx\":\"react\"}' scripts/sync-projects.ts",
"upload:images": "ts-node --transpile-only --compiler-options '{\"module\":\"commonjs\",\"moduleResolution\":\"node\",\"jsx\":\"react\"}' scripts/upload-images.ts",
"update:stats": "ts-node --transpile-only --compiler-options '{\"module\":\"commonjs\",\"moduleResolution\":\"node\",\"jsx\":\"react\"}' scripts/update-stats.ts"
},
"dependencies": {
"@giscus/react": "^3.1.0",
"@next/third-parties": "^16.2.6",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@supabase/supabase-js": "^2.105.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^17.4.2",
"framer-motion": "^12.38.0",
"gray-matter": "^4.0.3",
"lucide-react": "^0.562.0",
"next": "15.5.18",
"next-mdx-remote": "^6.0.0",
"next-themes": "^0.4.6",
"pnpm": "^10.27.0",
"react": "^18",
"react-dom": "^18",
"react-markdown": "^10.1.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.14.1",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.6.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "15.5.18",
"postcss": "^8.5.14",
"shiki": "^3.21.0",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"pnpm": {
"overrides": {
"glob@>=10.2.0 <10.5.0": "^10.5.0",
"minimatch@<3.1.3": "^3.1.3",
"minimatch@>=9.0.0 <9.0.7": "^9.0.7",
"flatted@<3.3.4": "^3.3.4",
"ajv@<6.14.0": "^6.14.0",
"brace-expansion@<1.1.13": "^1.1.13",
"brace-expansion@>=2.0.0 <2.0.3": "^2.0.3",
"picomatch@<2.3.2": "^2.3.2",
"picomatch@>=4.0.0 <4.0.4": "^4.0.4"
}
}
}