🛠️ Add new scripts for build, test, lint, and environment validation in package.json

This commit is contained in:
2026-01-29 13:50:50 +00:00
parent 098c9e30fd
commit 85334e502b

View File

@@ -6,9 +6,13 @@
"main": "oauth-proxy.js", "main": "oauth-proxy.js",
"scripts": { "scripts": {
"start": "node oauth-proxy.js", "start": "node oauth-proxy.js",
"gamemaster": "node gamemaster-api.js",
"dev": "node oauth-proxy.js", "dev": "node oauth-proxy.js",
"test": "vitest" "build": "echo 'Backend is Node.js - no build step required'",
"gamemaster": "node gamemaster-api.js",
"test": "vitest",
"test:run": "vitest run",
"lint": "echo 'Add ESLint when ready'",
"validate": "node utils/env-validator.js"
}, },
"dependencies": { "dependencies": {
"cors": "^2.8.5", "cors": "^2.8.5",