-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.89 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.89 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "ditherandetch",
"type": "module",
"version": "0.0.1",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"stylelint": "stylelint \"**/*.{css,scss,astro,svelte}\"",
"stylelint:fix": "stylelint \"**/*.{css,scss,astro,svelte}\" --fix",
"markdownlint": "markdownlint-cli2 \"**/*.md\"",
"markdownlint:fix": "markdownlint-cli2 \"**/*.md\" --fix",
"lint:all": "npm run lint && npm run stylelint && npm run markdownlint",
"check": "npm run lint && npm run format:check && npm run stylelint && npm run type-check",
"fix:all": "npm run lint:fix && npm run stylelint:fix && npm run markdownlint:fix",
"test": "npx playwright test",
"test:unit": "echo 'Unit tests not implemented yet' && exit 0",
"test:a11y": "TEST_PORT=14323 npx playwright test tests/accessibility.spec.ts",
"test:perf": "TEST_PORT=14324 npx playwright test tests/performance.spec.ts",
"test:seo": "TEST_PORT=14325 npx playwright test tests/seo.spec.ts",
"test:discovery": "TEST_PORT=14326 npx playwright test tests/automated-discovery.spec.ts",
"test:lighthouse": "LHCI_PORT=14322 npx lhci autorun",
"test:lighthouse:collect": "LHCI_PORT=14322 npx lhci collect",
"test:lighthouse:assert": "npx lhci assert",
"test:ui": "npx playwright test --ui",
"test:debug": "npx playwright test --debug",
"test:report": "npx playwright show-report playwright-report",
"test:ci": "npx playwright test --project=chromium-light --project=chromium-dark",
"test:batched": "node scripts/run-tests.js",
"test:all": "npm run test:lighthouse && TEST_PORT=14321 npx playwright test",
"audit": "npm run test:a11y && npm run test:lighthouse",
"quality": "npm run lint:all && npm run format:check && npm run audit",
"quality:fix": "npm run fix:all && npm run format && npm run build",
"clean": "rm -rf test-results playwright-report .lighthouseci dist",
"clean:deps": "rm -rf node_modules pnpm-lock.yaml && pnpm install",
"dev:debug": "astro dev --inspect",
"build:analyze": "astro build --analyze",
"type-check": "tsc --noEmit",
"sync:types": "astro sync && tsc --noEmit",
"dev": "astro dev",
"sync": "astro sync",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"prepare": "husky install || true",
"pre-commit": "lint-staged",
"commit": "git-cz",
"release": "semantic-release"
},
"dependencies": {
"@astrojs/sitemap": "^3.7.2",
"@astrojs/svelte": "^7.2.5",
"@fontsource/bebas-neue": "^5.2.7",
"@fontsource/ibm-plex-sans": "^5.2.8",
"@fontsource/literata": "^5.2.8",
"@huggingface/transformers": "^3.8.1",
"@tailwindcss/vite": "^4.2.2",
"astro": "^5.18.1",
"heic-to": "^1.4.2",
"markdownlint-cli2": "^0.21.0",
"sharp": "^0.34.5",
"svelte": "^5.55.3",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@axe-core/playwright": "^4.11.1",
"@eslint/js": "^10.0.1",
"@lhci/cli": "^0.15.1",
"@playwright/test": "^1.59.1",
"@types/hast": "^3.0.4",
"@typescript-eslint/parser": "^8.58.1",
"axe-core": "^4.11.2",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.7.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-svelte": "^3.17.0",
"globals": "^17.5.0",
"html-validate": "^10.12.1",
"lighthouse": "^13.1.0",
"markdownlint": "^0.40.0",
"markdownlint-cli": "^0.47.0",
"playwright": "^1.59.1",
"postcss-html": "^1.8.1",
"prettier": "^3.8.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-svelte": "^3.5.1",
"stylelint": "^17.7.0",
"stylelint-config-standard": "^40.0.0",
"svelte-eslint-parser": "^1.6.0",
"terser": "^5.46.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.1"
}
}