Set up monorepo workspace

This commit is contained in:
Andras Schmelczer 2025-02-18 22:36:53 +00:00
parent ae3acb9e1e
commit eb88d35c2e
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
10 changed files with 207 additions and 26 deletions

28
sync-client/package.json Normal file
View file

@ -0,0 +1,28 @@
{
"name": "sync-client",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/types/src/index.d.ts",
"scripts": {
"dev": "webpack watch --mode development",
"build": "webpack --mode production",
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest"
},
"devDependencies": {
"tslib": "2.4.0",
"typescript": "5.7.2",
"sync_lib": "file:../backend/sync_lib/pkg",
"@types/jest": "^29.5.14",
"@types/node": "^16.11.6",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"p-queue": "^8.0.1",
"fetch-retry": "^6.0.0",
"byte-base64": "^1.1.0",
"openapi-fetch": "0.13.3",
"openapi-typescript": "7.4.4",
"ts-loader": "^9.5.1",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
}
}