-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.2 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
{
"name": "personal-atlas",
"type": "module",
"version": "1.0.0",
"private": true,
"description": "Personal site of Sviatoslav Barbutsa - Edge Atlas. Static Astro on Cloudflare Workers static assets.",
"packageManager": "pnpm@10.13.1",
"engines": {
"node": ">=24 <25",
"pnpm": ">=10 <11"
},
"scripts": {
"dev": "astro dev",
"check": "astro check",
"build": "pnpm check && astro build && node scripts/build-headers.mjs",
"preview": "astro preview",
"new:article": "node scripts/new-article.mjs",
"lint:code": "eslint \"src/**/*.{astro,ts}\" \"tests/**/*.ts\" \"scripts/**/*.mjs\" \"*.config.{js,mjs,ts}\" --max-warnings=0",
"lint:styles": "stylelint \"src/**/*.{css,astro}\" --max-warnings=0",
"lint:architecture": "node scripts/check-architecture.mjs",
"lint": "pnpm lint:code && pnpm lint:styles && pnpm lint:architecture",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "pnpm build && playwright test",
"verify:wrangler-local": "node scripts/verify-wrangler-local.mjs",
"verify": "pnpm format:check && pnpm lint && pnpm check && pnpm test:coverage && astro build && node scripts/build-headers.mjs && playwright test && pnpm verify:wrangler-local",
"release:check": "pnpm verify && wrangler deploy --dry-run",
"release": "pnpm verify && wrangler deploy"
},
"dependencies": {
"astro": "7.2.2"
},
"devDependencies": {
"@astrojs/check": "0.9.10",
"@astrojs/rss": "4.0.19",
"@astrojs/sitemap": "3.7.3",
"@axe-core/playwright": "4.12.1",
"@eslint/js": "9.39.5",
"@playwright/test": "1.61.1",
"@vitest/coverage-v8": "4.1.10",
"eslint": "9.39.5",
"eslint-plugin-astro": "1.7.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"globals": "17.7.0",
"postcss-html": "1.8.1",
"prettier": "3.9.5",
"prettier-plugin-astro": "0.14.1",
"sharp": "0.35.3",
"stylelint": "17.14.0",
"stylelint-config-html": "1.1.0",
"stylelint-config-standard": "40.0.0",
"typescript": "5.9.3",
"typescript-eslint": "8.64.0",
"vitest": "4.1.10",
"wrangler": "4.110.0"
}
}