-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.64 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.64 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
{
"name": "smart-ads-simulator",
"private": true,
"type": "module",
"license": "GPL-3.0-only",
"packageManager": "pnpm@10.23.0",
"scripts": {
"dev": "node scripts/run-vite-target.mjs localhost dev --host 127.0.0.1",
"build": "node scripts/run-vite-target.mjs production build && node scripts/generate-seo.mjs production",
"build:local": "node scripts/run-vite-target.mjs localhost build && node scripts/generate-seo.mjs localhost",
"build:github": "node scripts/run-vite-target.mjs github build && node scripts/generate-seo.mjs github && node scripts/verify-github-pages-build.mjs",
"build:cloudflare": "node scripts/run-vite-target.mjs cloudflare build && node scripts/generate-seo.mjs cloudflare && node scripts/prune-cloudflare-assets.mjs",
"preview": "node scripts/run-vite-target.mjs localhost preview --host 127.0.0.1",
"preview:local": "node scripts/run-vite-target.mjs localhost preview --host 127.0.0.1",
"preview:github": "node scripts/run-vite-target.mjs github preview --host 127.0.0.1 --port 4177",
"seo:generate": "node scripts/generate-seo.mjs production",
"serve:github": "npm run build:github && npm run preview:github"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"dependencies": {
"@tailwindcss/vite": "^4.2.1",
"@vitejs/plugin-react": "^5.0.4",
"framer-motion": "^12.38.0",
"lucide-react": "^1.14.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tailwindcss": "^4.2.1",
"vite": "^7.3.1",
"zustand": "^5.0.13"
},
"devDependencies": {
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"typescript": "^5.8.3"
}
}