forked from js-tasks-ru/nodejs-20190329-2_dobiday
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 881 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
{
"name": "nodejs-basic-tasks-ru",
"version": "1.0.0",
"description": "Node.JS Course Materials",
"scripts": {
"test": "mocha --reporter=reporter.js *module/*task/**/*.test.js",
"test:local": "node local.js",
"lint": "eslint ."
},
"keywords": [],
"author": "Sergey Zelenov",
"license": "ISC",
"devDependencies": {
"chai": "^4.2.0",
"colors": "^1.3.3",
"eslint": "^5.15.3",
"eslint-config-google": "^0.12.0",
"glob": "^7.1.3",
"mocha": "^5.2.0"
},
"dependencies": {
"config": "^3.0.1",
"fs-extra": "^7.0.1",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-favicon": "^2.0.1",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"mongoose": "^5.4.15",
"mongoose-beautiful-unique-validation": "^7.1.1",
"request-promise": "^4.2.4",
"sinon": "^7.2.7"
}
}