Initial commit: gate operator quotation app

React + Vite + Tailwind frontend with Express backend.
3-step wizard (Operator, Ground Loops, Access Control)
with PDF quote download and CAD pricing data.
This commit is contained in:
Todd
2026-05-21 09:13:59 -04:00
commit 74587ccceb
24 changed files with 5306 additions and 0 deletions

13
server/package.json Normal file
View File

@ -0,0 +1,13 @@
{
"name": "gate-quote-server",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "node --watch index.js",
"start": "node index.js"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2"
}
}