-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.02 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.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
{
"name": "BuildingMomo",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:secure": "vite --mode secure",
"build": "vue-tsc -b && vite build && node scripts/build-i18n.js",
"build:secure": "vue-tsc -b && vite build --mode secure && node scripts/build-i18n.js && node scripts/clean-seo-for-secure.js",
"preview": "vite preview",
"fetch-data": "node scripts/fetch-data.js",
"prebuild": "npm run fetch-data",
"prebuild:secure": "npm run fetch-data",
"prepare": "husky",
"dev:cloud-sync-worker": "wrangler dev --config cloud-sync-worker/wrangler.jsonc",
"dev:cloudflare-functions": "wrangler pages dev . --port 8788",
"deploy:cloud-sync-worker": "wrangler deploy --config cloud-sync-worker/wrangler.jsonc",
"deploy:cloudflare": "npm run build:secure && wrangler pages deploy dist --project-name buildingmomo-lab"
},
"dependencies": {
"@fontsource-variable/inter": "^5.2.8",
"@tailwindcss/vite": "^4.2.0",
"@tresjs/cientos": "^5.4.0",
"@tresjs/core": "^5.5.0",
"@vueuse/core": "^14.2.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"comlink": "^4.4.2",
"idb-keyval": "^6.2.2",
"lucide-vue-next": "^0.575.0",
"pinia": "^3.0.4",
"reka-ui": "^2.8.0",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.0",
"three": "^0.183.0",
"three-mesh-bvh": "^0.9.8",
"vue": "^3.5.28",
"vue-sonner": "^2.0.9"
},
"devDependencies": {
"@types/node": "^25.3.0",
"@types/three": "^0.183.0",
"@vitejs/plugin-vue": "^6.0.4",
"@vue/tsconfig": "^0.8.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tw-animate-css": "^1.4.0",
"typescript": "~5.9.3",
"vite": "npm:rolldown-vite@7.3.1",
"vite-plugin-pwa": "^1.2.0",
"vue-tsc": "^3.2.4"
},
"overrides": {
"vite": "npm:rolldown-vite@7.3.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue,json,md}": [
"prettier --write"
]
}
}