-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1006 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
39
40
41
42
43
44
45
46
{
"name": "koa-template",
"version": "0.0.1",
"description": "A simple koa api example",
"main": "index.js",
"scripts": {
"start": "node .",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "standard --verbose | snazzy",
"precommit": "npm run lint",
"prepush": "npm run fixcode",
"fixcode": "standard --fix"
},
"keywords": [
"api",
"koa.js",
"node.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/alanbueno/koa-template.git"
},
"author": "Alan Bueno",
"license": "ISC",
"engines": {
"node": "8.11.2",
"npm": "6.1.0"
},
"devDependencies": {
"husky": "^4.3.0",
"nyc": "^15.1.0",
"snazzy": "^9.0.0",
"standard": "^16.0.2",
"supertest": "^6.0.1"
},
"dependencies": {
"boom": "^7.3.0",
"config": "^3.3.2",
"dotenv": "^8.2.0",
"joi": "^17.3.0",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-router": "^10.0.0",
"raven": "^2.6.4"
}
}