-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
43 lines (43 loc) · 1.05 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
{
"name": "koa2-kickstarter",
"version": "1.0.0",
"description": "An opinionated boilerplate for koa v2 with batteries included",
"main": "src/index.js",
"scripts": {
"pretest": "eslint src || true",
"test": "ava -v",
"start": "node bin/server",
"watch": "nodemon bin/server",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
"author": "Umayr Shahid <umayrr@hotmail.co.uk>",
"license": "MIT",
"dependencies": {
"babel-core": "^6.18.2",
"babel-preset-koa2-node7": "^0.1.0",
"boom": "^4.2.0",
"convict": "^1.5.0",
"debug": "^2.3.3",
"koa": "^2.0.0",
"koa-bunyan-logger": "^2.0.0-pre1",
"koa-compose": "^3.1.0",
"koa-json": "^2.0.2",
"koa-router": "^7.0.1"
},
"devDependencies": {
"ava": "^0.17.0",
"babel-eslint": "^7.1.1",
"babel-runtime": "^6.18.0",
"eslint": "^3.11.0",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.2.0",
"nodemon": "^1.11.0"
},
"ava": {
"babel": "inherit",
"require": [
"babel-register"
]
}
}