-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.91 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.91 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
{
"name": "web",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -H 127.0.0.1",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"test:smoke": "playwright test tests/smoke.spec.ts",
"test:search-limit": "playwright test --project=desktop-chromium tests/search-limit.spec.ts",
"test:deploy-smoke": "node scripts/deploy-smoke.mjs",
"generate:types": "payload generate:types",
"postinstall": "node scripts/generate-env.js"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@material-symbols/svg-400": "^0.44.4",
"@payloadcms/db-postgres": "^3.80.0",
"@payloadcms/next": "^3.80.0",
"@payloadcms/richtext-lexical": "^3.80.0",
"@payloadcms/ui": "^3.80.0",
"@types/pg": "^8.18.0",
"axios": "^1.13.5",
"escape-html": "^1.0.3",
"graphql": "^16.12.0",
"lucide-react": "^0.563.0",
"next": "16.1.7",
"payload": "^3.80.0",
"pg": "^8.20.0",
"posthog-js": "^1.362.0",
"posthog-node": "^5.28.4",
"react": "19.2.3",
"react-dom": "19.2.3",
"sharp": "^0.34.5"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4",
"@types/escape-html": "^1.0.4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.7",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5"
},
"pnpm": {
"overrides": {
"undici": "^7.24.0",
"minimatch": "^10.2.4",
"picomatch": "^4.0.4",
"flatted": "^3.4.2",
"immutable": "^4.3.8",
"ajv@^6": "^6.14.0",
"ajv@^8": "^8.18.0",
"dompurify": "^3.3.2",
"file-type": "^21.3.1",
"esbuild": "^0.25.0",
"yaml@^1": "^1.10.3",
"yaml@^2": "^2.8.3"
}
}
}