-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.31 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.31 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
{
"name": "tuphan.dev",
"description": "The markdown 📜 template blog with 👀-pleasant colors and animation; Especially, 🎉 open-source and 🔋 batteries-included.",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently --names DEV,LNT,MGR -c cyan,yellow,magenta 'pnpm dev:watch' 'pnpm lint:watch' 'pnpm migrate:watch'",
"dev:watch": "next dev --port 3000",
"build": "next build",
"ci:build": "pnpm migrate && pnpm build",
"start": "next start",
"lint": "next lint",
"lint:watch": "nodemon --watch src --ext ts,tsx --exec 'next lint' --signal SIGTERM",
"migrate": "tsx db.up.ts",
"migrate:watch": "nodemon --watch db.up.ts --watch src --ext md,mdx --exec 'pnpm migrate' --signal SIGTERM"
},
"dependencies": {
"@egjs/react-view360": "4.0.0-beta.7",
"@headlessui/react": "^2.1.2",
"@icons-pack/react-simple-icons": "^9.6.0",
"@next/third-parties": "15.1.3",
"@tsparticles/engine": "^3.5.0",
"@tsparticles/react": "^3.0.0",
"@tsparticles/slim": "^3.5.0",
"clsx": "^2.1.1",
"copy-to-clipboard": "^3.3.3",
"dayjs": "^1.11.11",
"immer": "^10.1.1",
"isomorphic-git": "^1.27.1",
"keyboardjs": "^2.7.0",
"ky": "^1.7.0",
"lucide-react": "^0.399.0",
"lunr": "^2.3.9",
"mermaid": "^10.9.1",
"motion": "^11.17.0",
"next": "15.1.3",
"next-nprogress-bar": "^2.3.12",
"next-themes": "^0.4.4",
"open-graph-scraper": "^6.8.3",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-fast-compare": "^3.2.2",
"react-medium-image-zoom": "^5.2.13",
"react-player": "^2.16.0",
"react-use": "^17.6.0",
"server-only": "^0.0.1",
"swr": "^2.2.5",
"tailwind-merge": "^2.5.2",
"zod": "^3.24.1",
"zod-validation-error": "^3.4.0",
"zustand": "^5.0.2"
},
"devDependencies": {
"@eslint/compat": "^1.1.0",
"@gears-bot/rehype": "^2.1.0",
"@jsdevtools/rehype-toc": "^3.0.2",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "15.1.3",
"@tailwindcss/typography": "^0.5.13",
"@types/eslint-plugin-jsx-a11y": "^6.10.0",
"@types/lunr": "^2.3.7",
"@types/mdx": "^2.0.13",
"@types/node": "^20.14.9",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"daisyui": "^4.12.14",
"dotenv": "^16.4.5",
"dree": "^5.0.8",
"eslint": "^8.57.0",
"eslint-config-next": "15.1.3",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.34.3",
"highlightjs-solidity": "^2.0.6",
"lowlight": "^3.1.0",
"mdast-util-from-markdown": "^2.0.1",
"mdast-util-frontmatter": "^2.0.1",
"mdast-util-to-string": "^4.0.0",
"micromark-extension-frontmatter": "^2.0.0",
"nodemon": "^3.1.4",
"postcss": "^8.4.39",
"reflect-metadata": "^0.2.2",
"rehype-autolink-headings": "^7.1.0",
"rehype-katex": "^7.0.0",
"rehype-mdx-import-media": "^1.2.0",
"rehype-mermaid": "^2.1.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"remark-slug": "^7.0.1",
"sass": "^1.77.6",
"tailwindcss": "^3.4.4",
"toml": "^3.0.0",
"tsx": "^4.16.2",
"typescript": "^5.5.2",
"unist-util-select": "^5.1.0",
"webpack": "^5.93.0"
}
}