Adding gnommoeditor in the current version

This commit is contained in:
2026-04-11 09:24:21 +02:00
commit 53d310da82
237 changed files with 64938 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{
"name": "gnommoeditor-backend",
"version": "1.0.0",
"description": "Backend API for GnommoEditor",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"migrate": "node run-migrations.cjs",
"migrate:up": "node run-migrations.cjs up",
"migrate:down": "node run-migrations.cjs down",
"migrate:create": "node-pg-migrate create"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.600.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.1.0",
"multer": "^1.4.5-lts.1",
"node-pg-migrate": "^7.0.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.11.3"
}
}