-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.17 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.17 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
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
{
"name": "khou22.github.io",
"version": "1.0.0",
"engines": {
"node": ">=20.9.0"
},
"packageManager": "pnpm@8.6.7",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"analyze": "ANALYZE=true next build",
"dev": "next dev",
"build": "next build",
"clean": "rm -rf .next node_modules",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"start:cdn": "serve -s docs -p 4000",
"test": "jest",
"generate:assets": "python scripts/generate_assets.py",
"generate:thumbnails": "python scripts/generate_thumbnails.py --max_kb 250",
"clean-images": "python scripts/clean_assets.py",
"clean-db": "tsx scripts/clean_db.ts",
"fetch-og": "tsx scripts/fetch-og.ts"
},
"dependencies": {
"@builder.io/react-hydration-overlay": "^0.0.6",
"@codeium/react-code-editor": "^1.0.10",
"@ffmpeg/ffmpeg": "^0.12.15",
"@ffmpeg/util": "^0.12.2",
"@headlessui/react": "^1.7.17",
"@hookform/resolvers": "^3.3.2",
"@next/third-parties": "^14.1.0",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-hover-card": "^1.0.7",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tooltip": "^1.0.7",
"@sendgrid/mail": "^8.1.0",
"@types/react-syntax-highlighter": "^15.5.10",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"form-data": "^4.0.4",
"gray-matter": "^4.0.3",
"lodash": "^4.17.21",
"mailgun.js": "^12.0.3",
"moment": "^2.29.4",
"next": "14.2.3",
"next-themes": "^0.2.1",
"node-html-parser": "^7.0.1",
"parse-numeric-range": "^1.3.0",
"posthog-js": "^1.154.4",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.48.2",
"react-markdown": "^9.0.1",
"react-photo-album": "^2.3.0",
"react-syntax-highlighter": "^15.5.0",
"reading-time": "^1.5.0",
"rehype-raw": "^7.0.0",
"sharp": "^0.34.2",
"sonner": "^1.3.1",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.6",
"tailwind-merge": "^2.1.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.22.4"
},
"devDependencies": {
"@next/bundle-analyzer": "^14.0.4",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@types/jest": "^29.5.11",
"@types/lodash": "^4.17.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unused-imports": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8",
"prettier": "^3.1.0",
"prettier-plugin-tailwindcss": "^0.5.7",
"serve": "^14.2.1",
"tailwindcss": "^3.3.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsx": "^4.7.0",
"typescript": "^5.3.2"
}
}