-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.17 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "koa-blog-api",
"version": "1.0.0",
"description": " Koa RESTful API application",
"author": {
"name": "lidej",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/posquit0/koa-rest-api-boilerplate.git"
},
"keywords": [
"koa",
"koa2",
"rest",
"restful",
"api",
"koa-boilerplate",
"boilerplate",
"skeleton"
],
"engines": {
"node": ">= 7.0.0"
},
"main": "app",
"scripts": {
"start": "node app",
"pro": "NODE_ENV=production pm2 start app",
"proLog": "NODE_ENV=production node app",
"dev": "NODE_ENV=development nodemon -e js,njk --quiet | bunyan",
"test": "NODE_ENV=test jest --forceExit --verbose",
"test:unit": "npm test -- test/unit",
"test:integration": "npm test -- test/integration",
"test:watch": "npm test -- --watch",
"test:watch:unit": "npm run test:unit -- --watch",
"test:watch:integration": "npm run test:integration -- --watch",
"test:coverage": "npm test -- --coverage",
"test:coverage:unit": "npm run test:unit -- --coverage",
"test:coverage:integration": "npm run test:integration -- --coverage",
"lint": "eslint app test",
"lint:app": "eslint app",
"lint:test": "eslint test"
},
"dependencies": {
"axios": "^0.18.0",
"bunyan": "^1.8.12",
"dotenv": "^5.0.1",
"kcors": "^2.2.1",
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.0",
"koa-nunjucks-2": "^3.0.2",
"koa-router": "^7.4.0",
"koa-session": "^5.9.0",
"koa-static": "^5.0.0",
"koa-views": "^6.1.4",
"moment": "^2.22.2",
"mongoose": "^5.2.10",
"nunjucks": "^3.1.3",
"simplemde": "^1.11.2",
"swagger-jsdoc": "^1.9.7",
"uuid": "^3.2.1",
"xss": "^1.0.3"
},
"devDependencies": {
"coveralls": "^3.0.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.19.1",
"eslint-config-omnious": "^0.4.0",
"jest": "^22.4.3",
"jest-junit": "^4.0.0",
"nodemon": "^1.17.2",
"supertest": "^3.0.0"
},
"jest": {
"testEnvironment": "node"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}