Initial commit.

This commit is contained in:
Cameron Redmore 2025-04-23 15:55:28 +01:00
commit 2d11d0bd79
54 changed files with 6657 additions and 0 deletions

38
package.json Normal file
View file

@ -0,0 +1,38 @@
{
"name": "forms-app",
"version": "0.0.1",
"description": "Custom forms application for StyleTech",
"productName": "STS Forms",
"author": "Cameron Redmore <cameron@redmore.me>",
"type": "module",
"private": true,
"scripts": {
"test": "echo \"No test specified\" && exit 0",
"dev": "quasar dev -m ssr",
"build": "quasar build -m ssr",
"postinstall": "quasar prepare"
},
"dependencies": {
"@google/genai": "^0.9.0",
"@quasar/extras": "^1.16.4",
"axios": "^1.8.4",
"better-sqlite3": "^11.9.1",
"date-fns": "^4.1.0",
"dotenv": "^16.5.0",
"pdfkit": "^0.17.0",
"pdfmake": "^0.2.18",
"quasar": "^2.16.0",
"vue": "^3.4.18",
"vue-router": "^4.0.0"
},
"devDependencies": {
"@quasar/app-vite": "^2.1.0",
"autoprefixer": "^10.4.2",
"postcss": "^8.4.14"
},
"engines": {
"node": "^28 || ^26 || ^24 || ^22 || ^20 || ^18",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}