-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.75 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
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"volta": {
"node": "24.14.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"seo:indexnow": "node ./scripts/submit-indexnow.mjs",
"seo:indexnow:dry": "node ./scripts/submit-indexnow.mjs --dry-run",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:ci": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:e2e:functional": "playwright test --grep-invert \"visual regression\"",
"test:e2e:visual": "playwright test e2e/visual-regression.spec.ts",
"test:e2e:update-snapshots": "playwright test e2e/visual-regression.spec.ts --update-snapshots",
"ci:verify": "pnpm audit --audit-level=high && pnpm format:check && pnpm lint:ci && pnpm typecheck && pnpm test && pnpm test:coverage && pnpm test:e2e:functional",
"install-hooks": "cp .git-hooks/pre-commit .git/hooks/pre-commit && chmod +x .git/hooks/pre-commit && echo '✔ Git hooks installed'"
},
"dependencies": {
"@gsap/react": "^2.1.2",
"@phosphor-icons/react": "^2.1.10",
"@radix-ui/react-select": "^2.3.7",
"clsx": "^2.1.1",
"gsap": "^3.15.0",
"lenis": "^1.3.25",
"next": "16.2.12",
"next-intl": "^4.13.4",
"next-themes": "^0.4.6",
"react": "19.2.8",
"react-dom": "19.2.8",
"tailwind-merge": "^3.6.0",
"zustand": "^5.0.14"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@playwright/test": "^1.62.0",
"@tailwindcss/postcss": "^4.3.3",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/eslint-plugin-jsx-a11y": "^6.10.1",
"@types/node": "^26.1.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.65.0",
"@vitest/coverage-v8": "^4.1.10",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^9.39.5",
"eslint-config-next": "16.2.12",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-check-file": "^3.3.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-perfectionist": "^5.10.0",
"eslint-plugin-prettier": "^5.5.6",
"jsdom": "^30.0.0",
"playwright": "^1.62.0",
"prettier": "^3.9.6",
"prettier-plugin-tailwindcss": "^0.8.1",
"tailwindcss": "^4.3.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.65.0",
"vite": "^8.1.5",
"vitest": "^4.1.10"
}
}