Initial commit: add .gitignore and README

This commit is contained in:
defiQUG
2026-02-09 21:51:31 -08:00
commit ef7df1fb2f
58 changed files with 8414 additions and 0 deletions

49
package.json Normal file
View File

@@ -0,0 +1,49 @@
{
"name": "datacenter-control-complete",
"version": "1.0.0",
"description": "A comprehensive datacenter control system integrated with TP-Link Omada Cloud API",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"setup:env": "bash scripts/setup-env.sh",
"add:omada-env": "bash scripts/add-omada-env.sh",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:studio": "prisma studio",
"test:auth": "ts-node scripts/test-auth.ts",
"init:vlans": "ts-node scripts/init-topology-vlans.ts",
"lint": "eslint src --ext .ts",
"test": "jest"
},
"keywords": [
"omada",
"tp-link",
"network-management",
"datacenter"
],
"author": "",
"license": "MIT",
"dependencies": {
"@prisma/client": "^5.7.1",
"axios": "^1.6.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"node-cron": "^3.0.3",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.5",
"@types/node-cron": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"prisma": "^5.7.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}