forked from mjhea0/node-koa-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 679 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "node-koa-api",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./src/server/index.js",
"test": "./node_modules/mocha/bin/_mocha ./test/**/*.test.js"
},
"keywords": [],
"author": "Michael Herman",
"license": "ISC",
"devDependencies": {
"chai": "4.1.1",
"chai-http": "^3.0.0",
"mocha": "3.5.0",
"sinon": "^4.1.5"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"knex": "^0.13.0",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-passport": "^4.0.1",
"koa-redis": "^3.1.1",
"koa-router": "^7.2.1",
"koa-session": "^5.5.1",
"passport-local": "^1.0.0",
"pg": "^7.1.2"
}
}