feat: implement PouchDB storage layer with CRUD operations and add showcase UI component

This commit is contained in:
Firman Ramdhani
2026-05-29 15:35:14 +07:00
parent 86c02e7111
commit 6712558eaf
15 changed files with 1820 additions and 309 deletions
+12 -1
View File
@@ -13,12 +13,23 @@
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@repo/utils": "workspace:*"
"@repo/utils": "workspace:*",
"pouchdb-browser": "^9.0.0",
"pouchdb-find": "^9.0.0"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@types/pouchdb": "^6.4.2",
"@types/pouchdb-adapter-memory": "^6.1.6",
"@types/pouchdb-browser": "^6.1.5",
"@types/pouchdb-core": "^7.0.15",
"@types/pouchdb-find": "^7.3.3",
"@types/pouchdb-mapreduce": "^6.1.10",
"eslint": "^8.57.1",
"pouchdb-adapter-memory": "^9.0.0",
"pouchdb-core": "^9.0.0",
"pouchdb-mapreduce": "^9.0.0",
"typescript": "5.5.4",
"vitest": "^4.0.17"
}