Initial commit: lightweight form capture microservice

This commit is contained in:
Krishna Kumar
2026-02-04 10:24:06 -06:00
commit e46c1c7063
4 changed files with 317 additions and 0 deletions

17
package.json Normal file
View File

@@ -0,0 +1,17 @@
{
"name": "form-capture",
"version": "1.0.0",
"description": "Lightweight form capture microservice",
"main": "index.js",
"scripts": {
"start": "node index.js"
},
"dependencies": {
"better-sqlite3": "^11.7.0",
"cors": "^2.8.5",
"express": "^4.21.2"
},
"engines": {
"node": ">=18"
}
}