forked from kmathy/Koapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.56 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
{
"name": "koapi",
"version": "0.4.0",
"description": "Koapi - REST API boilerplate made with Koa.js (v2+)",
"main": "src/app.js",
"scripts": {
"start": "nodemon src/app.js --exec babel-node",
"test": "set NODE_ENV=test && mocha --compilers js:babel-core/register \"src/**/*.spec.js\"",
"build": "webpack"
},
"author": "Kevin MATHY",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.5.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.1.0",
"compression-webpack-plugin": "^1.0.0",
"eslint": "^4.1.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"manakin": "^0.4.7",
"mocha": "^3.4.2",
"nodemon": "^1.11.0",
"supertest": "^3.0.0",
"webpack": "^3.0.0",
"webpack-node-externals": "^1.6.0"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"bcrypt": "^1.0.2",
"convict": "^4.0.0",
"dotenv": "^4.0.0",
"jsonwebtoken": "^7.4.1",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-convert": "^1.2.0",
"koa-helmet": "^3.2.0",
"koa-jwt": "^3.2.2",
"koa-logger": "^3.0.0",
"koa-respond": "^1.0.1",
"koa-router": "^7.2.1",
"mongoose": "^4.11.4",
"validator": "^8.0.0"
}
}