Первый проект

This commit is contained in:
2026-03-18 14:24:58 +07:00
commit 5cb59a64d5
6 changed files with 1596 additions and 0 deletions

21
package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "postgres-admin-panel",
"version": "1.0.0",
"description": "PostgreSQL Admin Panel with .env configuration",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js"
},
"dependencies": {
"express": "^4.18.2",
"pg": "^8.11.3",
"dotenv": "^16.3.1",
"cors": "^2.8.5",
"express-session": "^1.17.3",
"bcryptjs": "^2.4.3"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}