-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.43 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
{
"name": "detached-node",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"build:production": "pnpm build",
"start": "next start",
"lint": "eslint && pnpm run lint:adp",
"lint:adp": "tsx scripts/typecheck-sketches.ts && tsx scripts/validate-references.ts && tsx scripts/check-affiliate-links.ts && tsx scripts/lint-changelog.ts",
"payload": "payload",
"seed:test": "tsx scripts/seed-test-db.ts",
"db:reset": "tsx scripts/seed-test-db.ts",
"test": "vitest",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:unit:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"backfill:lqip": "tsx scripts/backfill-lqip.ts",
"backfill:previews": "tsx scripts/backfill-previews.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@payloadcms/db-postgres": "^3.84.1",
"@payloadcms/next": "^3.84.1",
"@payloadcms/richtext-lexical": "^3.84.1",
"@payloadcms/storage-s3": "^3.84.1",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.38.0",
"graphql": "^16.13.2",
"gsap": "^3.15.0",
"mermaid": "^11.14.0",
"next": "16.2.4",
"next-themes": "^0.4.6",
"next-view-transitions": "^0.3.5",
"panzoom": "^9.4.4",
"payload": "^3.84.1",
"react": "19.2.5",
"react-dom": "19.2.5",
"sharp": "^0.34.5"
},
"devDependencies": {
"@ai-sdk/openai": "^1",
"@modelcontextprotocol/sdk": "^1.29.0",
"@playwright/test": "^1.59.1",
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.19",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^5.1.3",
"@vitest/coverage-v8": "^4.1.4",
"ai": "^4",
"babel-plugin-react-compiler": "^1.0.0",
"class-variance-authority": "^0.7.1",
"dotenv": "^17.4.2",
"eslint": "^9",
"eslint-config-next": "16.2.4",
"jsdom": "^29.0.2",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^6",
"vitest": "^4.1.4",
"zod": "^3.25.76"
},
"pnpm": {
"patchedDependencies": {
"next-view-transitions": "patches/next-view-transitions.patch"
}
}
}