-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 909 Bytes
/
package.json
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
31
32
33
34
35
36
37
38
{
"name": "koa-test-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"babel-cli": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.8.0",
"bookshelf": "^0.9.4",
"knex": ">=0.19.5",
"koa": "^2.0.0",
"koa-bodyparser": "^3.1.0",
"koa-router": "^7.0.1",
"pg": "^4.5.5"
},
"devDependencies": {
"koa-logger": "^2.0.0",
"mocha": "^2.4.5",
"nodemon": "^1.9.2",
"should": "^8.3.1",
"supertest": "^1.2.0"
},
"engines": {
"node": "6.0.0",
"npm": "3.8.6"
},
"scripts": {
"start": "nodemon src/index.js --exec babel-node",
"test": "make test",
"build": "babel src -d dist",
"serve": "node dist/index.js",
"postinstall": "npm run build && knex migrate:latest --knexfile dist/knexfile.js"
},
"author": "",
"license": "ISC"
}