-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.68 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
{
"name": "aiwan.run",
"type": "module",
"version": "0.0.1",
"private": true,
"packageManager": "pnpm@9.15.4",
"author": "Debbl <me@aiwan.run> (https://aiwan.run/)",
"repository": {
"type": "git",
"url": "https://github.com/Debbl/aiwan.run.git"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"build:analyze": "ANALYZE=true next build",
"typecheck": "tsc --noEmit",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@codesandbox/sandpack-react": "^2.19.10",
"@debbl/ahooks": "^0.3.4",
"@debbl/utils": "^0.2.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"icons": "workspace:*",
"motion": "workspace:*",
"next": "^15.1.6",
"next-mdx-remote": "^5.0.0",
"next-nprogress-bar": "^2.4.3",
"next-themes": "^0.4.4",
"next-view-transitions": "^0.3.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-medium-image-zoom": "^5.2.13",
"react-snowfall": "^2.2.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"twl": "0.0.0-alpha.5"
},
"devDependencies": {
"@debbl/eslint-config": "^3.8.10",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/bundle-analyzer": "^15.1.6",
"@next/mdx": "^15.1.6",
"@serwist/next": "^9.0.11",
"@types/hast": "^3.0.4",
"@types/loader-utils": "^2.0.6",
"@types/markdown-it": "^14.1.2",
"@types/mdast": "^4.0.4",
"@types/mdx": "^2.0.13",
"@types/node": "^22.10.10",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/rss": "^0.0.32",
"autoprefixer": "^10.4.20",
"eslint": "^9.18.0",
"github-slugger": "^2.0.0",
"glob": "^11.0.1",
"globby": "^14.0.2",
"gray-matter": "^4.0.3",
"html-react-parser": "^5.2.2",
"lint-staged": "^15.4.2",
"loader-utils": "^3.3.1",
"markdown-it": "^14.1.0",
"postcss": "^8.5.1",
"postcss-nesting": "^13.0.1",
"rehype-github-alerts": "^3.0.0",
"remark": "^15.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-github": "^12.0.0",
"remark-mdx-frontmatter": "^5.0.0",
"remark-plugins": "workspace:*",
"rss": "^1.2.2",
"satori": "^0.12.1",
"serwist": "^9.0.11",
"sharp": "^0.33.5",
"shiki": "^2.1.0",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"vfile": "^6.0.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}