add basic package.json with koa and ioredis

This commit is contained in:
Jakub Sokołowski 2018-10-16 13:18:59 -04:00
parent a3652a3a3e
commit 225b051c2f
1 changed files with 15 additions and 0 deletions

15
package.json Normal file
View File

@ -0,0 +1,15 @@
{
"name": "click-counter",
"version": "0.0.1",
"description": "Minimal API for counting clicks",
"main": "index.js",
"dependencies": {
"ioredis": "^4.1.0",
"koa": "^2.5.3"
},
"devDependencies": {},
"scripts": {},
"keywords": [],
"author": "",
"license": "ISC"
}