-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 4.96 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 4.96 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@prochat/saaskit",
"version": "2.0.0",
"type": "module",
"private": true,
"engines": {
"node": ">=20"
},
"description": "ProChat public website for Memory, Memory for QA, and Workbench.",
"author": "Steve Westhoek",
"scripts": {
"dev": "next dev -p 3056",
"prebuild": "npm run sitemap",
"build": "next build",
"analyze": "ANALYZE=true next build",
"start": "sh scripts/start-production.sh",
"sitemap": "tsx scripts/generate-sitemap.ts",
"provision:auto": "node scripts/provision-auto.js",
"postinstall": "prisma generate --schema=prisma/system.prisma",
"db:init": "node scripts/db/init-tenant.js",
"db:cleanup": "node scripts/db/cleanup-tenant.js",
"db:migrate:dev": "prisma migrate dev --schema=prisma/system.prisma",
"db:migrate:prod": "prisma migrate deploy --schema=prisma/system.prisma",
"predev": "node scripts/dev/bootstrap-env.js && npm run db:init && npm run db:migrate:dev",
"db:provision:local": "NODE_ENV=development npm run provision:auto",
"validate:assets": "node scripts/validate-static-asset-imports.mjs",
"test:asset-validator": "node --test scripts/validate-static-asset-imports.test.mjs",
"test:accessibility-policy": "node --import tsx --test tests/evidence/accessibility-policy.test.ts",
"test:performance-policy": "node --import tsx --test tests/performance/canonical-performance-policy.test.ts tests/performance/canonical-performance-attribution.test.mjs",
"test:security-api": "TEST_BASE_URL=${TEST_BASE_URL:?TEST_BASE_URL is required} node --import tsx --test tests/security/fixed-window-rate-limit.test.ts tests/security/api-protection.test.ts tests/security/legacy-compatibility.test.ts",
"perf:canonical": "node scripts/run-canonical-performance.mjs",
"perf:diagnostic": "PERF_DIAGNOSTIC_MODE=1 PERF_DIAGNOSTIC_ROUTES=/,/memory,/memory-qa,/workbench,/docs,/contact node scripts/run-canonical-performance.mjs",
"typecheck": "tsc --noEmit",
"lint": "eslint . --max-warnings=0",
"lint:design": "node scripts/design/lint-design-system.mjs",
"test:evidence:docs-mobile": "WAVE1_BASE_URL=${WAVE1_BASE_URL:?WAVE1_BASE_URL is required} npx playwright test tests/evidence/docs-mobile-layout.spec.ts --config=tests/evidence/playwright.wave1.config.ts --project=wave1-chromium",
"test:evidence:ci": "WAVE1_BASE_URL=${WAVE1_BASE_URL:?WAVE1_BASE_URL is required} npx playwright test tests/evidence/docs-mobile-layout.spec.ts tests/evidence/canonical-route-smoke.spec.ts tests/evidence/canonical-accessibility.spec.ts tests/evidence/canonical-chrome-proof.spec.ts tests/evidence/public-v4-route-audit.spec.ts --config=tests/evidence/playwright.wave1.config.ts --project=wave1-chromium",
"lint:design:baseline": "node scripts/design/lint-design-system.mjs --write-baseline"
},
"dependencies": {
"@fontsource/jetbrains-mono": "^5",
"@next/third-parties": "^14.2.5",
"@prisma/client": "6.7.0",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-navigation-menu": "^1.2.0",
"@radix-ui/react-slider": "^1.2.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.2",
"@react-email/components": "^0.0.25",
"axios": "^1.7.9",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"form-data": "^4.0.0",
"formik": "^2.4.6",
"framer-motion": "^12.23.26",
"gsap": "^3.14.2",
"html2canvas": "^1.4.1",
"html2pdf.js": "^0.10.2",
"jspdf": "^2.5.1",
"lucide-react": "^0.408.0",
"newrelic": "^13.18.0",
"next": "^14.2.31",
"next-themes": "^0.4.4",
"nextjs-toploader": "^1.6.11",
"pg": "^8.12.0",
"prop-types": "^15.8.1",
"radix-ui": "^1.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-email": "^3.0.1",
"react-hot-toast": "^2.4.1",
"react-responsive-masonry": "^2.4.1",
"react-syntax-highlighter": "^15.5.0",
"react-to-print": "^2.15.1",
"react-tooltip": "^5.26.3",
"resend": "^4.0.0",
"sass": "^1.82.0",
"tailwind-merge": "^2.4.0",
"yup": "^1.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@next/bundle-analyzer": "^16.1.6",
"@playwright/test": "1.55.0",
"@types/jest": "^29.5.12",
"@types/mdx": "^2.0.12",
"@types/node": "^20",
"@types/pdfkit": "^0.13.5",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-syntax-highlighter": "^15.5.11",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"autoprefixer": "^10.4.20",
"chrome-launcher": "^1.1.2",
"eslint": "^8",
"eslint-config-next": "^14.2.31",
"husky": "^9.1.7",
"lighthouse": "^12.4.0",
"postcss": "^8.4.49",
"prisma": "6.7.0",
"tailwindcss": "^3.4.16",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.21.0",
"typescript": "^5"
}
}