-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.12 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
{
"name": "aiwan.run",
"type": "module",
"version": "0.0.1",
"private": true,
"packageManager": "[email protected]",
"author": "Debbl <[email protected]> (https://aiwan.run/)",
"scripts": {
"fetch": "tsx --env-file .env.local scripts/fetch.ts",
"dev": "next dev",
"build": "ANALYZE=true next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@codesandbox/sandpack-react": "^2.19.9",
"@debbl/ahooks": "^0.2.2",
"@debbl/utils": "^0.2.2",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.2.13",
"@types/mdx": "^2.0.13",
"date-fns": "^4.1.0",
"framer-motion": "^11.9.0",
"gray-matter": "^4.0.3",
"medium-zoom": "^1.1.0",
"next": "^14.2.13",
"next-mdx-remote": "^5.0.0",
"next-themes": "^0.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"remark-gfm": "^4.0.0",
"rss": "^1.2.2",
"slash": "^5.1.0",
"twl": "0.0.0-alpha.5",
"vfile": "^6.0.3"
},
"devDependencies": {
"@debbl/eslint-config": "^3.7.1",
"@next/bundle-analyzer": "^14.2.13",
"@types/dom-view-transitions": "^1.0.5",
"@types/hast": "^3.0.4",
"@types/markdown-it": "^14.1.2",
"@types/mdast": "^4.0.4",
"@types/node": "^22.7.4",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@types/rss": "^0.0.32",
"autoprefixer": "^10.4.20",
"eslint": "^9.11.1",
"github-slugger": "^2.0.0",
"glob": "^11.0.0",
"globby": "^14.0.2",
"html-react-parser": "^5.1.16",
"lint-staged": "^15.2.10",
"markdown-it": "^14.1.0",
"postcss": "^8.4.47",
"postcss-nesting": "^13.0.0",
"remark": "^15.0.1",
"remark-frontmatter": "^5.0.0",
"remark-mdx-frontmatter": "^5.0.0",
"sharp": "^0.33.5",
"shiki": "^1.21.0",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.4.13",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}