-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 5.08 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 5.08 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "my-website",
"private": true,
"version": "0.0.1",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"serve:build": "serve -s build -l 4173",
"prepare": "svelte-kit sync || echo ''",
"typecheck": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --fail-on-warnings",
"typecheck:tsc": "tsc -p tsconfig.json --noEmit",
"format": "prettier --config config/.prettierrc --ignore-path config/.prettierignore --write .",
"format:check": "prettier --config config/.prettierrc --ignore-path config/.prettierignore --check .",
"lint:ts": "eslint . --ext .ts,.svelte --max-warnings=0",
"lint:css": "stylelint \"src/**/*.{css,svelte}\" --cache --report-needless-disables",
"lint:css:fix": "stylelint \"src/**/*.{css,svelte}\" --fix",
"lint:json": "eslint . --ext .json,.jsonc",
"lint:yaml": "eslint . --ext .yml,.yaml",
"lint": "npm-run-all -l -p lint:ts lint:css lint:json lint:yaml",
"lint:html": "html-validate --config config/html-validate.json --formatter stylish \"build/**/*.html\"",
"validate:html": "vnu --errors-only --skip-non-html build",
"validate:links": "start-server-and-test \"npm run serve:build\" http://localhost:4173 \"linkinator http://localhost:4173 --config config/linkinator.config.json\"",
"check:links": "npm run validate:links",
"validate:css:dist": "stylelint \"build/_app/**/*.css\" --config .stylelintrc.dist.cjs --ignore-path .stylelintignore.dist",
"validate:css:grammar": "node scripts/validate-css-grammar.mjs",
"validate": "npm run build && npm run lint:html && npm run validate:html && npm run validate:css:grammar",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"coverage": "vitest run --coverage",
"test:e2e": "playwright test -c config/playwright.config.ts",
"test:e2e:ui": "playwright test -c config/playwright.config.ts --ui",
"audit:seo": "lhci autorun --config=config/lighthouserc.json",
"audit:seo:budgets": "lhci autorun --config=config/lhci.budgets.json",
"audit:seo:all": "npm-run-all -l audit:seo audit:seo:budgets",
"lint:all": "npm run lint && npm run build && npm run lint:html",
"qa": "npm run typecheck && npm run lint && npm run validate && npm run test:e2e && npm run audit:seo:all",
"ci:css": "npm run validate:css:dist && npm run validate:css:grammar",
"ci": "npm-run-all -l build lint validate:html check:links test:e2e audit:seo ci:css",
"ci:strict": "npm run ci && npm-run-all -l dep:audit deadcode:exports spellcheck",
"postinstall": "playwright install",
"postbuild": "node config/generate-sitemap.mjs",
"optimize:svg": "svgo -f static -r",
"analyze": "VISUALIZE=1 vite build",
"dep:audit": "npm audit --omit=dev || true",
"dep:updates": "npx npm-check-updates",
"deadcode:exports": "ts-prune -p tsconfig.json",
"deadcode:files": "knip",
"spellcheck": "cspell lint",
"check:links:prod": "linkinator https://pecuk.dev --config config/linkinator.config.json"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.2",
"@eslint/compat": "^1.2.5",
"@eslint/js": "^9.36.0",
"@lhci/cli": "^0.15.1",
"@playwright/test": "^1.55.1",
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "^2.22.0",
"@sveltejs/vite-plugin-svelte": "^6.0.0",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/postcss": "^4.1.13",
"@tailwindcss/typography": "^0.5.15",
"@tailwindcss/vite": "^4.0.0",
"@testing-library/svelte": "^5.2.8",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22",
"@vitest/coverage-v8": "^3.2.4",
"autoprefixer": "^10.4.21",
"cspell": "^9.2.1",
"css-tree": "^3.1.0",
"cssnano": "^7.1.1",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-jsonc": "^2.20.1",
"eslint-plugin-svelte": "^3.12.4",
"eslint-plugin-yml": "^1.18.0",
"flexsearch": "^0.8.212",
"globals": "^16.4.0",
"html-validate": "^10.0.0",
"jsdom": "^27.0.0",
"knip": "^5.64.1",
"linkinator": "^6.1.4",
"npm-run-all": "^4.1.5",
"postcss-html": "^1.8.0",
"postcss-preset-env": "^10.4.0",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"prettier-plugin-tailwindcss": "^0.6.14",
"rollup-plugin-visualizer": "^6.0.3",
"serve": "^14.2.5",
"start-server-and-test": "^2.1.2",
"stylelint": "^16.24.0",
"stylelint-config-recess-order": "^7.3.0",
"stylelint-config-standard": "^39.0.0",
"stylelint-config-tailwindcss": "^1.0.0",
"stylelint-declaration-strict-value": "^1.10.11",
"stylelint-high-performance-animation": "^1.11.0",
"stylelint-no-unsupported-browser-features": "^8.0.4",
"svelte": "^5.0.0",
"svelte-check": "^4.3.2",
"svelte-meta-tags": "^4.4.1",
"svgo": "^4.0.0",
"tailwindcss": "^4.0.0",
"ts-node": "^10.9.2",
"ts-prune": "^0.10.3",
"typescript": "^5.9.2",
"typescript-eslint": "^8.45.0",
"vite": "^7.0.4",
"vitest": "^3.2.4",
"vnu-jar": "^25.11.4"
},
"overrides": {
"cookie": "^0.7.0",
"tmp": "^0.2.4",
"ws": "^8.18.0",
"tar-fs": "^3.0.6"
},
"browserslist": [
"Chrome >= 112",
"Edge >= 122",
"Firefox >= 113",
"Safari >= 16.4",
"iOS >= 16.4",
"not op_mini all",
"ios_saf >= 16.4"
]
}