-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.74 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.74 KB
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
{
"name": "yuler.dev",
"type": "module",
"version": "0.0.1",
"packageManager": "pnpm@10.33.0",
"scripts": {
"dev": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"check": "astro check",
"astro": "astro",
"create:post": "node scripts/create-post.mjs",
"export:pdf": "pnpm build && node scripts/export-post-pdf.mjs",
"gen:screenshots": "node scripts/screenshot.mjs",
"sync:strava:activities": "tsx --env-file=.env scripts/sync-strava-activities.mjs",
"format": "autocorrect src/content && eslint .",
"format:fix": "autocorrect --fix src/content && eslint . --fix",
"test": "vitest",
"test:strava": "vitest run scripts/sync-strava.test.mjs",
"clean": "pnpm clean:dist && pnpm clean:pdfs && pnpm clean:screenshots",
"clean:dist": "rm -rf dist",
"clean:pdfs": "rm -rf pdfs",
"clean:screenshots": "rm -rf screenshots",
"up": "npx taze -I"
},
"dependencies": {
"@astrojs/mdx": "^5.0.3",
"@fontsource/inter": "^5.2.8",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.2",
"@yuler/utils": "^0.3.1",
"astro": "^6.1.8",
"date-fns": "^4.1.0",
"html-to-image": "^1.11.13",
"leaflet": "^1.9.4",
"mermaid": "^11.14.0",
"qrcode": "^1.5.4",
"sharp": "^0.34.5",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.3"
},
"devDependencies": {
"@antfu/eslint-config": "^8.2.0",
"@astrojs/check": "^0.9.8",
"@types/leaflet": "^1.9.21",
"@types/qrcode": "^1.5.6",
"autocorrect-node": "^2.14.0",
"eslint": "^10.2.1",
"eslint-plugin-astro": "^1.7.0",
"eslint-plugin-format": "^2.0.1",
"playwright": "^1.59.1",
"tsx": "^4.21.0",
"vite": "7.3.1",
"vitest": "^4.1.4"
}
}