-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.68 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
{
"author": "vbetsch",
"dependencies": {
"@fontsource/azeret-mono": "^5.2.11",
"@fontsource/inter": "^5.2.8",
"@fontsource/poppins": "^5.2.7",
"astro": "^7.0.3",
"astro-icon": "^1.1.5"
},
"description": "My official personal website",
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@axe-core/playwright": "^4.12.1",
"@lhci/cli": "^0.15.1",
"@playwright/test": "^1.61.1",
"@types/node": "^26.0.1",
"@vbetsch/config-eslint": "^1.0.5",
"@vbetsch/config-prettier": "^1.0.2",
"@vbetsch/config-tsconfig": "^1.0.4",
"@vitest/coverage-v8": "^4.1.8",
"@vitest/ui": "^4.1.8",
"dotenv": "^17.4.2",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-astro": "1.7.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-react": "^7.37.5",
"html-validate": "^11.5.3",
"http-status-codes": "^2.3.0",
"oxlint": "^1.71.0",
"prettier-plugin-astro": "0.14.1",
"vitest": "^4.1.9"
},
"engines": {
"node": "24.14.1"
},
"name": "portfolio",
"scripts": {
"build": "astro build",
"check": "npm run lint:ox && npm run check:tsc && npm run check:astro && npm run lint:es:strict",
"check:astro": "astro check",
"check:lint": "npm run lint",
"check:tsc": "tsc",
"format": "prettier --write .",
"html-validate": "npm run build && npm run test:html",
"lhci": "rm -rf lighthouse-report/ && npm run build && npm run lighthouse:local",
"lighthouse:local": "lhci autorun --config=.lighthouserc.local.cjs",
"lighthouse:external": "lhci autorun --config=.lighthouserc.external.cjs",
"lint": "npm run lint:ox && npm run lint:es:strict",
"lint:es": "eslint",
"lint:es:strict": "eslint --max-warnings=0",
"lint:ox": "oxlint",
"playwright": "npm run build && npm run test:playwright:ui",
"start:dev": "astro dev --host",
"start:prod": "astro preview",
"start:prod:expose": "astro preview --host",
"sync": "astro sync",
"test": "npm run test:html && npm run test:units && npm run playwright",
"test:playwright": "playwright test",
"test:playwright:grep": "playwright test --grep",
"test:playwright:ui": "playwright test --ui",
"test:playwright:ui:grep": "playwright test --ui --grep",
"test:html": "html-validate \"dist/**/*.html\"",
"test:units": "vitest run",
"test:units:cov": "vitest run --coverage --reporter=default --reporter=html --outputFile=vitest-report/index.html",
"test:units:cov:read": "vite preview --outDir vitest-report",
"test:units:watch": "vitest"
},
"type": "module",
"version": "0.1.1"
}