Initial release

This commit is contained in:
odweta
2026-09-10 12:43:40 +02:00
commit 42cc4eafa8
15 changed files with 7400 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
{
"name": "Fakturovac",
"version": "1.0.0",
"description": "A simple app for creating and managing invoices.",
"type": "commonjs",
"main": "src/server.js",
"scripts": {
"test": "jest --runInBand",
"test:watch": "jest --watch",
"serve": "node src/server.js"
},
"dependencies": {
"express": "5.2.1",
"node-fetch": "3.3.2",
"pg": "^8.11.3"
},
"devDependencies": {
"jest": "30.5.1",
"supertest": "7.2.2"
}
}