-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.14 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
57
58
59
60
61
62
{
"name": "personal-site-v4",
"type": "module",
"description": "thewhitewulfy/personal-site",
"private": true,
"version": "4.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"cfpreview": "wrangler pages dev ./dist",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:unit:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"db:migrate": "node scripts/migrate-database.js",
"db:migrate:local": "node scripts/migrate-database.js --local",
"db:verify": "node scripts/verify-database.js",
"db:verify:local": "node scripts/verify-database.js --local"
},
"dependencies": {
"@astrojs/cloudflare": "^11.0.1",
"@fontsource/prompt": "^5.0.14",
"@fontsource/zilla-slab": "^5.0.13",
"sanitize-html": "^2.17.4"
},
"devDependencies": {
"@astrojs/check": "^0.7.0",
"@astrojs/mdx": "^3.1.0",
"@astrojs/rss": "^4.0.6",
"@astrojs/sitemap": "^3.1.5",
"@cloudflare/workers-types": "^4.20240729.0",
"@playform/compress": "^0.0.13",
"@types/sanitize-html": "^2.16.1",
"astro": "^4.15.12",
"cssnano": "^7.0.2",
"dayjs": "^1.11.11",
"mdast-util-to-string": "^4.0.0",
"postcss-custom-media": "^8.0.2",
"postcss-import": "^16.1.0",
"postcss-loader": "^8.1.1",
"postcss-mixins": "^10.0.1",
"postcss-nested": "^6.0.1",
"postcss-preset-env": "^9.5.14",
"postcss-url": "^10.1.3",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"prettier-plugin-organize-imports": "^3.2.4",
"reading-time": "^1.5.0",
"typescript": "^5.4.5",
"vite-plugin-pwa": "^0.16.4",
"wrangler": "^4.28.1",
"vitest": "^3.2.1",
"@vitest/coverage-v8": "^3.2.1",
"@playwright/test": "^1.52.0",
"jsdom": "^26.1.0",
"happy-dom": "^17.4.6"
}
}