-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.54 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
{
"name": "openstudio-website",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"sync-blog-images": "node scripts/sync-blog-image-manifest.mjs",
"generate-image-assets": "node scripts/generate-image-assets.mjs",
"predev": "npm run sync-blog-images && npm run generate-image-assets",
"dev": "vite",
"stage-release-publish-inputs": "node scripts/stage-release-publish-inputs.mjs",
"validate-release-publish-inputs": "node scripts/validate-release-publish-inputs.mjs",
"stage-ai-runtime-metadata": "node scripts/stage-ai-runtime-metadata.mjs",
"validate-ai-runtime-metadata": "node scripts/validate-ai-runtime-metadata.mjs",
"validate-launch-readiness": "node scripts/validate-launch-readiness.mjs",
"prerender-route-metadata": "node scripts/prerender-route-metadata.mjs",
"test:ai-runtime": "node --test test/ai-runtime-manifest.test.mjs",
"test:feature-story": "node --test test/feature-story-*.test.mjs",
"test:launch": "node --test test/launch-readiness.test.mjs",
"build": "npm run sync-blog-images && npm run generate-image-assets && npm run stage-release-publish-inputs && npm run validate-release-publish-inputs && npm run validate-launch-readiness && vite build && npm run prerender-route-metadata",
"lint": "eslint .",
"preview": "vite preview",
"generate-og": "node scripts/generate-og.mjs"
},
"dependencies": {
"@chenglou/pretext": "^0.0.4",
"@radix-ui/react-aspect-ratio": "^1.1.7",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-slot": "^1.2.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^11.18.2",
"gsap": "^3.15.0",
"lenis": "^1.3.17",
"lucide-react": "^0.462.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"react-router-dom": "^6.30.1",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"three": "^0.184.0"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@types/node": "^22.16.5",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react-swc": "^3.11.0",
"autoprefixer": "^10.4.21",
"eslint": "^9.32.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"fast-xml-parser": "^4.5.3",
"globals": "^15.15.0",
"playwright": "^1.59.1",
"postcss": "^8.5.6",
"sharp": "^0.34.5",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0",
"vite": "^5.4.19"
}
}