aiwf
Version:
AI Workflow Framework for Claude Code with multi-language support (Korean/English)
64 lines • 1.72 kB
JSON
{
"name": "api-server",
"displayName": "API 서버 (Node.js + Express)",
"description": "Express와 TypeScript로 구성된 RESTful API 서버 템플릿",
"type": "api-server",
"language": "typescript",
"framework": "express",
"features": [
"Express 4",
"TypeScript",
"JWT Authentication",
"Swagger Documentation",
"Database Ready",
"AIWF Integration",
"Error Handling",
"Request Validation"
],
"structure": {
"src": "소스 코드",
"tests": "테스트 파일",
".aiwf": "AIWF 설정 및 메타데이터",
"docs": "API 문서"
},
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"helmet": "^7.0.0",
"compression": "^1.7.4",
"dotenv": "^16.3.1",
"jsonwebtoken": "^9.0.1",
"bcryptjs": "^2.4.3",
"express-validator": "^7.0.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^20.0.0",
"@types/cors": "^2.8.13",
"@types/compression": "^1.7.2",
"@types/jsonwebtoken": "^9.0.2",
"@types/bcryptjs": "^2.4.2",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"typescript": "^5.1.0",
"ts-node": "^10.9.0",
"nodemon": "^3.0.0",
"eslint": "^8.43.0",
"jest": "^29.5.0",
"@types/jest": "^29.5.0",
"supertest": "^6.3.0",
"@types/supertest": "^2.0.12"
},
"scripts": {
"dev": "nodemon",
"build": "tsc",
"start": "node dist/index.js",
"test": "jest",
"lint": "eslint . --ext .ts",
"aiwf": "node .aiwf/scripts/cli.js"
}
}