claude-flow-novice
Version:
Claude Flow Novice - Advanced orchestration platform for multi-agent AI workflows with CFN Loop architecture Includes Local RuVector Accelerator and all CFN skills for complete functionality.
47 lines • 1.11 kB
JSON
{
"name": "@api-gateway/jwt-auth",
"version": "1.0.0",
"description": "JWT authentication middleware for API gateway",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix"
},
"dependencies": {
"jsonwebtoken": "^9.0.2",
"bcryptjs": "^2.4.3",
"redis": "^4.6.10",
"joi": "^17.11.0",
"helmet": "^7.1.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"dotenv": "^16.3.1",
"uuid": "^9.0.1",
"winston": "^3.11.0"
},
"devDependencies": {
"jest": "^29.7.0",
"supertest": "^6.3.3",
"nodemon": "^3.0.2",
"eslint": "^8.55.0",
"@types/jest": "^29.5.8"
},
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"jwt",
"authentication",
"api-gateway",
"middleware",
"security"
],
"author": "API Gateway Team",
"license": "MIT"
}