2018-10-16 17:18:59 +00:00
|
|
|
{
|
|
|
|
"name": "click-counter",
|
|
|
|
"version": "0.0.1",
|
|
|
|
"description": "Minimal API for counting clicks",
|
|
|
|
"main": "index.js",
|
|
|
|
"dependencies": {
|
2018-10-16 17:55:00 +00:00
|
|
|
"async-redis": "^1.1.4",
|
2018-10-16 17:31:16 +00:00
|
|
|
"koa": "^2.5.3",
|
|
|
|
"koa-json": "^2.0.2",
|
|
|
|
"koa-router": "^7.4.0"
|
2018-10-16 17:18:59 +00:00
|
|
|
},
|
2018-10-16 17:22:22 +00:00
|
|
|
"devDependencies": {
|
|
|
|
"babel-cli": "^6.26.0",
|
|
|
|
"babel-preset-env": "^1.7.0",
|
|
|
|
"babel-preset-stage-2": "^6.24.1",
|
|
|
|
"nodemon": "^1.18.4"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"start": "nodemon --exec babel-node --presets env,stage-2 src/index.js"
|
|
|
|
},
|
2018-10-16 17:18:59 +00:00
|
|
|
"keywords": [],
|
|
|
|
"author": "",
|
|
|
|
"license": "ISC"
|
|
|
|
}
|