-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.45 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
{
"name": "dio.la",
"scripts": {
"gen:article-data": "bun src/scripts/generate-article-data.ts",
"gen": "bun gen:article-data",
"watch:article-data": "watch 'bun gen:article-data' src/routes/article",
"watch": "bun watch:article-data",
"dev:watch": "NODE_ENV='development' bun watch",
"dev:solid-start": "solid-start dev",
"dev": "concurrently --kill-others 'bun dev:watch' 'bun dev:solid-start'",
"typecheck": "tsc --noEmit --skipLibCheck",
"lint": "eslint --ignore-path .gitignore .",
"check": "bun lint && bun typecheck",
"build": "NODE_ENV=production bun gen && solid-start build",
"start": "solid-start start",
"prod": "bun build && bun start"
},
"type": "module",
"devDependencies": {
"@fec/remark-a11y-emoji": "^4.0.0",
"@mdx-js/mdx": "^3.0.0",
"@mdx-js/rollup": "^3.0.0",
"@types/eslint": "^8.44.7",
"@types/node": "^20.9.0",
"@types/prettier": "^2.7.3",
"@types/react": "^18.2.37",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"autoprefixer": "^10.4.16",
"bun-types": "^1.0.11",
"concurrently": "^8.2.2",
"eslint": "^8.53.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-solid": "^0.13.0",
"gray-matter": "^4.0.3",
"katex": "^0.16.9",
"lexical": "^0.12.2",
"postcss": "^8.4.31",
"prettier": "^3.1.0",
"rehype-external-links": "^3.0.0",
"rehype-katex": "^7.0.0",
"rehype-raw": "^7.0.0",
"rehype-slug": "^6.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"remark-mdx-images": "^2.0.0",
"remark-shiki-twoslash": "^3.1.3",
"rollup": "^4.4.1",
"sass": "^1.69.5",
"solid-devtools": "^0.28.1",
"solid-mdx": "^0.0.7",
"solid-start-bun": "^0.3.10",
"solid-start-vercel": "^0.3.10",
"tailwindcss": "^3.3.5",
"typescript": "5.2.2",
"undici": "^5.27.2",
"vite": "^4.5.0",
"watch": "^1.0.2",
"yaml": "^2.3.4"
},
"dependencies": {
"@ariakit/react": "^0.4.7",
"@solidjs/meta": "^0.29.1",
"@solidjs/router": "^0.9.1",
"clsx": "^2.0.0",
"date-fns": "^2.30.0",
"giscus": "^1.3.0",
"p-debounce": "^4.0.0",
"solid-js": "^1.8.5",
"solid-start": "^0.3.10"
},
"engines": {
"node": ">=16"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}