summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorTim Keller <tjk@tjkeller.xyz>2025-12-20 12:18:44 -0600
committerTim Keller <tjk@tjkeller.xyz>2025-12-20 12:18:44 -0600
commited9b272afedf93e3b5b4fba77e5213d07b976653 (patch)
tree59d444b29ded1d6d54c10be07e67fac3ddc17523 /package.json
parent7844c5dbb9fa668539cee4ef654513ccb33efaa0 (diff)
downloadimmich-frame-ed9b272afedf93e3b5b4fba77e5213d07b976653.tar.xz
immich-frame-ed9b272afedf93e3b5b4fba77e5213d07b976653.zip
setup npm workspace in src/client for sveltekit project
Diffstat (limited to 'package.json')
-rw-r--r--package.json20
1 files changed, 7 insertions, 13 deletions
diff --git a/package.json b/package.json
index 864f2ae..1153fbf 100644
--- a/package.json
+++ b/package.json
@@ -1,17 +1,11 @@
{
+ "private": true,
+ "workspaces": [
+ "src/client"
+ ],
"scripts": {
- "build": "vite build",
- "dev": "vite dev"
- },
- "dependencies": {
- "@fontsource/overpass": "^5.2.5",
- "flickity": "^3.0.0",
- "socket.io-client": "^4.8.1"
- },
- "devDependencies": {
- "@spiriit/vite-plugin-svg-spritemap": "^5.0.0",
- "@tailwindcss/vite": "^4.1.17",
- "tailwindcss": "^4.1.10",
- "vite": "^7.2.7"
+ "build": "npm run build --workspace=src/client",
+ "preview": "npm run preview --workspace=src/client",
+ "dev": "npm run dev --workspace=src/client"
}
}