mirror of
https://github.com/Permissionless-Software-Foundation/x402-base-facilitator.git
synced 2026-09-21 16:52:01 -07:00
37 lines
884 B
JSON
37 lines
884 B
JSON
{
|
|
"name": "koa2-boilerplate",
|
|
"version": "1.0.0",
|
|
"description": "Koa2 boilerplate covering all essensials",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "node index.js",
|
|
"test": "NODE_ENV=test ./node_modules/.bin/mocha --compilers js:babel-register --require babel-polyfill"
|
|
},
|
|
"keywords": [
|
|
"koa",
|
|
"koa2",
|
|
"boilerplate",
|
|
"es6",
|
|
"mongoose",
|
|
"passportjs"
|
|
],
|
|
"author": "Adrian Obelmejias <adrian@obel.me>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"babel-core": "^6.5.1",
|
|
"babel-polyfill": "^6.5.0",
|
|
"babel-preset-es2015": "^6.5.0",
|
|
"babel-preset-stage-0": "^6.5.0",
|
|
"koa": "^2.0.0-alpha.3",
|
|
"koa-bodyparser": "^2.0.1",
|
|
"koa-convert": "^1.2.0",
|
|
"koa-router": "^7.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"babel-register": "^6.5.1",
|
|
"mocha": "^2.4.5",
|
|
"should": "^8.2.2",
|
|
"supertest": "^1.2.0"
|
|
}
|
|
}
|