Files
ClickerZ/Backend/package.json
Tetardtek 91d1616dd7
Some checks failed
CI/CD — Build & Deploy / Build & Deploy (push) Failing after 25s
feat: PKCE auth + CI/CD deploy
- Frontend: PKCE flow (oauth.js, api.js centralized, cookie-based AuthContext)
- Backend: token introspection, cookies httpOnly, refresh endpoint
- Replaced localStorage JWT with httpOnly session cookies
- useSaveSync migrated to cookie auth
- cookie-parser added
- Gitea CI workflow (vps-runner pattern)
2026-03-24 13:01:15 +01:00

23 lines
464 B
JSON
Executable File

{
"scripts": {
"dev": "nodemon index.js",
"db:migrate": "node migrate.js",
"db:seed": "node seed.js",
"build": "node migrate.js",
"start": "node index.js"
},
"dependencies": {
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"joi": "^17.13.1",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.9.1"
},
"devDependencies": {
"nodemon": "^3.0.3"
}
}