forked from beeminder/blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.51 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
{
"name": "beeblog",
"type": "module",
"version": "2023.08.16-a",
"engines": {
"node": ">=18.16.0",
"pnpm": ">=7.26.3"
},
"packageManager": "[email protected]",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"test": "vitest",
"cache:clear": "rm -rf .cache",
"check": "astro check",
"check:ts": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"@astrojs/prefetch": "^0.3.0",
"@astrojs/rss": "^2.4.4",
"@fontsource-variable/lora": "^5.0.9",
"@fontsource/source-sans-pro": "^5.0.8",
"astro": "^2.10.12",
"feather-icons": "^4.29.0",
"gray-matter": "^4.0.3",
"happy-dom": "^10.10.4",
"levenshtein": "^1.0.5",
"marked": "^7.0.3",
"marked-smartypants": "^1.1.0",
"memize": "^2.1.0",
"node-fetch-cache": "^3.1.3",
"p-limit": "^4.0.0",
"strip-bom": "^5.0.0",
"striptags": "^3.2.0",
"zod": "^3.22.2"
},
"devDependencies": {
"@anatine/zod-mock": "^3.13.2",
"@faker-js/faker": "^8.0.2",
"@rollup/plugin-dsv": "^3.0.2",
"@types/feather-icons": "^4.29.1",
"@types/marked": "^5.0.1",
"@types/node-fetch-cache": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"prettier": "3.0.2",
"typescript": "^5.1.6",
"vite": "^4.4.9",
"vitest": "^0.34.2"
}
}