aiwf
Version:
AI Workflow Framework for Claude Code with multi-language support (Korean/English)
61 lines • 1.61 kB
JSON
{
"name": "{{projectName}}",
"version": "0.0.1",
"description": "AIWF 통합 Express API 서버",
"main": "dist/index.js",
"scripts": {
"dev": "nodemon",
"build": "tsc",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint . --ext .ts",
"aiwf": "node .aiwf/scripts/cli.js",
"aiwf:status": "npm run aiwf status",
"aiwf:feature": "npm run aiwf feature",
"aiwf:api": "npm run aiwf api"
},
"keywords": [
"api",
"express",
"typescript",
"aiwf"
],
"author": "",
"license": "MIT",
"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",
"winston": "^3.9.0",
"express-rate-limit": "^6.8.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",
"ts-jest": "^29.1.0",
"supertest": "^6.3.0",
"@types/supertest": "^2.0.12"
}
}