-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.46 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
{
"name": "cybersec-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "node scripts/copy-pdf-worker.mjs",
"predev": "node scripts/clear-next-cache.mjs && node scripts/copy-pdf-worker.mjs",
"dev": "next dev -p 3000",
"prebuild": "node scripts/copy-pdf-worker.mjs",
"build": "next build",
"start": "next start",
"backfill:identity": "node scripts/backfill-identity-postgres.mjs",
"backfill:profiles": "node scripts/backfill-profiles-postgres.mjs",
"backfill:content": "node scripts/backfill-content-postgres.mjs",
"backfill:operations": "node scripts/backfill-operations-postgres.mjs",
"lab:migrate-fs": "npx --yes tsx scripts/migrate-fs-to-scenarios.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"verify": "npm run typecheck && npm run lint && npm run test",
"e2e": "playwright test",
"e2e:headed": "playwright test --headed",
"e2e:ui": "playwright test --ui",
"e2e:install": "playwright install chromium"
},
"dependencies": {
"@react-pdf/renderer": "^4.5.1",
"@supabase/supabase-js": "^2.99.3",
"d3-geo": "^3.1.1",
"fast-xml-parser": "^5.8.0",
"gray-matter": "^4.0.3",
"lucide-react": "^0.577.0",
"motion": "^12.40.0",
"next": "^15.5.19",
"next-auth": "5.0.0-beta.31",
"next-mdx-remote": "^6.0.0",
"pdfjs-dist": "4.10.38",
"prism-react-renderer": "^2.4.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"rehype-pretty-code": "^0.14.3",
"resend": "^6.12.2",
"shiki": "^1.0.0",
"sqlite": "^5.1.1",
"sqlite3": "^6.0.1",
"topojson-client": "^3.1.0"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/d3-geo": "^3.1.0",
"@types/node": "^20",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/topojson-client": "^3.1.5",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/coverage-v8": "^4.1.5",
"autoprefixer": "^10",
"axe-core": "^4.11.4",
"eslint": "^8.57.1",
"eslint-config-next": "^15.5.19",
"jsdom": "^29.1.1",
"msw": "^2.14.5",
"postcss": "^8",
"tailwindcss": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5",
"vitest": "^4.1.2",
"vitest-axe": "^0.1.0"
},
"overrides": {
"next": {
"postcss": "^8.5.10"
}
}
}