30 lines
691 B
JSON
30 lines
691 B
JSON
{
|
|
"name": "koa-template",
|
|
"version": "1.0.0",
|
|
"description": "koa server template",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "node index.js",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"keywords": [],
|
|
"author": "Jay <admin@trj.tw>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@koa/cors": "^3.0.0",
|
|
"@koa/router": "^8.0.5",
|
|
"dotenv": "^8.2.0",
|
|
"koa": "^2.11.0",
|
|
"koa-body": "^4.1.1",
|
|
"koa-logger": "^3.2.1",
|
|
"koa-session2": "github:otakukaze/koa-session2#master",
|
|
"module-alias": "^2.2.2"
|
|
},
|
|
"_moduleAliases": {
|
|
"@libs": "libs",
|
|
"@config": "config",
|
|
"@route": "route",
|
|
"@controller": "controller"
|
|
}
|
|
}
|