Add DevSecOpsApp code with updated Jenkins pipeline for multi-environment deployment

This commit is contained in:
2025-11-30 15:24:19 +05:30
parent 30a2782a79
commit 3d49b0f4de
22 changed files with 22129 additions and 52 deletions

22
backend/package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "todo-backend",
"version": "1.0.0",
"description": "Simple Backend API for Todo Application",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "node server.js",
"test": "echo \"No tests specified\" && exit 0",
"build": "echo \"Backend build completed\" && exit 0",
"lint": "echo \"Linting not configured yet\" && exit 0",
"security": "npm audit --audit-level=high"
},
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1"
},
"keywords": ["todo", "api", "express"],
"author": "DevOps Learner",
"license": "MIT"
}