-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.05 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
{
"name": "repo-atlas",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.9.0"
},
"scripts": {
"dev": "next dev",
"build": "node scripts/check-build-output.mjs && node scripts/check-client-bundles.mjs",
"check:bundles": "node scripts/check-client-bundles.mjs",
"start": "next start",
"lint": "eslint src e2e fixtures scripts eslint.config.mjs next.config.js securityHeaders.js postcss.config.js playwright.config.ts tailwind.config.ts vitest.config.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"test:e2e": "playwright test",
"capture:portfolio": "playwright test e2e/portfolio-capture.spec.ts && node scripts/build-demo-gif.mjs"
},
"dependencies": {
"@vercel/blob": "^2.6.1",
"elkjs": "^0.11.0",
"html2canvas": "^1.4.1",
"jiti": "^2.7.0",
"jspdf": "^4.1.0",
"next": "16.2.11",
"posthog-js": "^1.404.1",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-zoom-pan-pinch": "^3.7.0",
"typescript": "^5.0.0",
"yauzl": "^3.4.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@playwright/test": "^1.49.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20.0.0",
"@types/pngjs": "^6.0.5",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@types/yauzl": "^3.4.0",
"@vitest/coverage-v8": "^3.2.6",
"adm-zip": "^0.6.0",
"autoprefixer": "^10.4.0",
"eslint": "9.39.2",
"eslint-config-next": "16.2.10",
"gifenc": "^1.0.3",
"jsdom": "^29.1.1",
"marked": "^16.4.2",
"pdfjs-dist": "^5.4.624",
"pngjs": "^7.0.0",
"postcss": "8.5.23",
"tailwindcss": "^3.4.0",
"vitest": "^3.2.6"
},
"overrides": {
"brace-expansion": "5.0.9",
"dompurify": "3.4.13",
"minimatch": "10.2.5",
"postcss": "8.5.23",
"sharp": "0.35.0"
}
}