-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 3.02 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 3.02 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
{
"name": "projectsites-template",
"private": true,
"version": "3.6.0",
"type": "module",
"description": "Cinematic React + Vite + Tailwind website template with DTCG brand tokens, 15 universal routes, kinetic typography, bento grid, command palette, full PWA kit, Zod-validated brand schema, Vitest + Playwright tests. Built for AI customization (bolt.diy, Claude, Cursor).",
"scripts": {
"dev": "vite",
"prebuild": "node scripts/generate-favicons.mjs",
"build": "tsc -b && vite build",
"postbuild": "node scripts/build-feeds.mjs && cp public/feed.xml public/atom.xml public/feed.json public/sitemap.xml dist/ 2>/dev/null || true",
"preview": "vite preview",
"build:feeds": "node scripts/build-feeds.mjs",
"typecheck": "tsc -b --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"e2e": "playwright test",
"e2e:prod": "PROD_URL=${PROD_URL:?'set PROD_URL'} playwright test",
"e2e:ui": "playwright test --ui",
"e2e:install": "playwright install --with-deps",
"validate:brand": "node scripts/validate-brand.mjs",
"brand:swap": "node scripts/swap-brand.mjs",
"og": "node scripts/og-image.mjs",
"prompt-evals": "node scripts/prompt-evals.mjs",
"deploy:applied": "node scripts/deploy-applied.mjs",
"screenshot:applied": "node scripts/screenshot-applied.mjs",
"manifest:applied": "node scripts/build-manifest.mjs",
"deploy:template": "node scripts/deploy-template.mjs",
"lighthouse": "node scripts/lighthouse.mjs",
"perf-budget": "node scripts/perf-budget.mjs",
"hue-rotate": "node scripts/hue-rotate.mjs",
"validate:all": "npm run validate:brand && npm run typecheck && npm run test && npm run prompt-evals && npm run build && npm run perf-budget",
"validate": "node scripts/build_validators.mjs dist",
"prerender": "node scripts/prerender-spa.mjs"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-navigation-menu": "^1.2.0",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"animate.css": "^4.1.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^0.400.0",
"photoswipe": "^5.4.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^6.26.0",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.1",
"@playwright/test": "^1.49.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"autoprefixer": "^10.4.19",
"jsdom": "^26.0.0",
"postcss": "^8.4.39",
"tailwindcss": "^3.4.6",
"typescript": "^5.5.3",
"vite": "^5.3.4",
"vitest": "^2.1.8"
}
}