-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.44 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": "beeblog",
"type": "module",
"version": "2024.04.16-a",
"engines": {
"node": ">=18.16.0",
"pnpm": ">=9.0.2"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "tsx ./scripts/image-cache.ts && astro build",
"preview": "astro preview",
"astro": "astro",
"test": "vitest",
"test:snapshot": "vitest --config ./vitest.snapshot.config.ts",
"test:snapshot:update": "vitest --config ./vitest.snapshot.config.ts --update",
"cache:clear": "rm -rf .cache && rm -rf node_modules/.astro",
"check": "astro check",
"check:ts": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"preinstall": "npx only-allow pnpm",
"puppeteer": "tsx ./scripts/puppeteer.ts",
"puppeteer:report": "tsx ./scripts/puppeteer-report.ts",
"puppeteer:reset": "pnpm run cache:clear && pnpm run build && rm -rf ./shots && mkdir ./shots"
},
"dependencies": {
"@astrojs/prefetch": "^0.4.1",
"@astrojs/rss": "^4.0.5",
"@astrojs/sitemap": "^3.1.1",
"@fontsource-variable/lora": "^5.0.9",
"@fontsource/source-sans-pro": "^5.0.8",
"astro": "^4.4.15",
"dotenv": "^16.3.1",
"expost": "github:bsoule/expost#920313519f180153c00f2f4f4c78b4f86974517e",
"feather-icons": "^4.29.1",
"findup-sync": "^5.0.0",
"happy-dom": "^12.0.1",
"levenshtein": "^1.0.5",
"marked": "^9.0.2",
"memize": "^2.1.0",
"node-fetch-cache": "^3.1.3",
"p-limit": "^4.0.0",
"sanitize-html": "^2.11.0",
"sharp": "^0.33.3",
"striptags": "^3.2.0",
"tsx": "^3.13.0",
"zod": "^3.22.2"
},
"devDependencies": {
"@anatine/zod-mock": "^3.13.2",
"@faker-js/faker": "^8.0.2",
"@types/diffable-html": "^5.0.1",
"@types/feather-icons": "^4.29.2",
"@types/findup-sync": "^4.0.2",
"@types/levenshtein": "^1.0.2",
"@types/marked": "^5.0.1",
"@types/node-fetch-cache": "^3.0.0",
"@types/pixelmatch": "^5.2.5",
"@types/pngjs": "^6.0.3",
"@types/sanitize-html": "^2.9.2",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitest/ui": "^0.34.6",
"concurrently": "^8.2.1",
"csv-parse": "^5.5.0",
"diffable-html": "^5.0.0",
"eslint": "^8.49.0",
"pixelmatch": "^5.3.0",
"pixelteer": "github:narthur/pixelteer",
"pngjs": "^7.0.0",
"prettier": "3.0.3",
"puppeteer": "22.6.5",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vitest": "^2.0.3"
}
}