Fix dependency management

This commit is contained in:
vorotamoroz
2026-06-17 04:24:55 +01:00
parent 5a35b71339
commit dcd10cd690
10 changed files with 136 additions and 87 deletions
+16 -2
View File
@@ -35,8 +35,15 @@ npm install
### Development
From the repository root:
```bash
npm run dev -w livesync-webapp
```
Or from the package directory:
```bash
# Build the project (ensure you are in `src/apps/webapp` directory)
cd src/apps/webapp
npm run dev
```
@@ -45,8 +52,15 @@ This will start a development server at `http://localhost:3000`.
### Build
From the repository root:
```bash
npm run build -w livesync-webapp
```
Or from the package directory:
```bash
# Build the project (ensure you are in `src/apps/webapp` directory)
cd src/apps/webapp
npm run build
```
+9 -2
View File
@@ -11,9 +11,16 @@
"run:docker": "docker run -p 8002:80 livesync-webapp",
"preview": "vite preview"
},
"dependencies": {},
"dependencies": {
"octagonal-wheels": "^0.1.46"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"playwright": "^1.58.2",
"svelte": "5.41.1",
"typescript": "5.9.3",
"vite": "^7.3.1"
"vite": "^7.3.1",
"vite-plugin-istanbul": "^8.0.0"
}
}