-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.17 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
{
"name": "blindtechmage-website",
"version": "0.1.0",
"private": true,
"type": "module",
"license": "Apache-2.0",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint:js": "eslint .",
"lint:md": "markdownlint-cli2 \"**/*.md\"",
"lint:html": "html-validate \"dist/client/**/*.html\"",
"lint": "npm run lint:js && npm run lint:md",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@astrojs/cloudflare": "^13.7.0",
"astro": "^6.4.8",
"mimetext": "^3.0.28"
},
"overrides": {
"undici": "^8.10.0",
"ws": "^8.21.3",
"sharp": "^0.35.3"
},
"devDependencies": {
"@axe-core/playwright": "^4.9.0",
"@cloudflare/workers-types": "^5.20260809.1",
"@eslint/js": "^9.0.0",
"@playwright/test": "^1.45.0",
"@vitest/coverage-v8": "^3.2.7",
"eslint": "^9.0.0",
"eslint-plugin-astro": "^1.2.0",
"html-validate": "^11.6.2",
"markdownlint-cli2": "^0.23.2",
"typescript": "^5.5.0",
"typescript-eslint": "^8.0.0",
"vitest": "^3.2.7",
"wrangler": "^4.61.1"
}
}