-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
41 lines (41 loc) · 1.26 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
{
"type": "module",
"scripts": {
"build:css": "tailwindcss -i src/style.scss -o assets/static/out.css",
"deploy": "bun build:css --minify && wrangler deploy --minify src/index.tsx",
"dev": "wrangler dev src/index.tsx",
"format": "prettier -w --cache --check .",
"lint": "eslint --cache -f pretty src"
},
"dependencies": {
"@shikijs/markdown-it": "^1.1.1",
"@shikijs/transformers": "^1.1.1",
"hono": "^4.0.0",
"markdown-it": "^14.0.0",
"markdown-it-anchor": "^8.6.7",
"markdown-it-attrs": "^4.1.6",
"markdown-it-emoji": "^3.0.0",
"short-unique-id": "^5.0.3"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240208.0",
"@radix-ui/colors": "^0.1.9",
"@tailwindcss/typography": "^0.5.10",
"@taskylizard/eslint-config": "^1.1.1",
"@types/markdown-it": "^13.0.7",
"@types/markdown-it-anchor": "^7.0.0",
"@types/markdown-it-attrs": "^4.1.3",
"@types/markdown-it-emoji": "^2.0.4",
"eslint": "^8.56.0",
"prettier": "^3.2.5",
"prettier-plugin-packagejson": "^2.4.10",
"prettier-plugin-tailwindcss": "^0.5.11",
"sass": "^1.70.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"wrangler": "^3.28.1"
},
"overrides": {
"typescript": "npm:tslite@latest"
}
}