-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.79 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "koa-restapi-boilerplate",
"version": "1.0.0",
"description": "Boilerplate for REST API using framework - koa,db - PostgresSql,ORM - objection",
"repository": {
"type": "git",
"url": "https://github.com/Hamalkari/Koa-REST-API-Boilerplate"
},
"main": "src/app.js",
"scripts": {
"dev": "nodemon --exec babel-node src/app.js | bunyan -o short",
"start": "node dist/app.js",
"build": "babel ./src -d ./dist -s",
"format": "prettier --write \"**/*.(js|json|yaml|yml)\"",
"lint": "eslint \"**/*.js\"",
"knex": "babel-node node_modules/knex/bin/cli.js --knexfile=./src/knexfile.js",
"migrate": "npm run knex -- migrate:latest",
"rollback": "npm run knex -- migrate:rollback",
"seed": "npm run knex -- seed:run"
},
"keywords": [
"koa",
"template",
"starter-kit",
"boilerplate",
"templating",
"restapi",
"objection"
],
"author": "Ivanov Vyacheslav <kosha.1997@bk.ru>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.6",
"@babel/node": "^7.8.4",
"@babel/preset-env": "^7.8.6",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.2",
"nodemon": "^2.0.2",
"prettier": "^1.19.1"
},
"dependencies": {
"@hapi/joi": "^17.1.0",
"@koa/cors": "^3.0.0",
"app-root-path": "^3.0.0",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"knex": "^0.20.10",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-combine-routers": "^4.0.2",
"koa-helmet": "^5.2.0",
"koa-morgan": "^1.0.1",
"koa-response-time": "^2.1.0",
"koa-router": "^8.0.8",
"objection": "^2.1.3",
"pg": "^7.18.2",
"winston": "^3.2.1"
}
}