-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
63 lines (63 loc) · 1.76 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
{
"name": "koa-restful-boilerplate",
"description": "Koa 2 RESTful API boilerplate",
"version": "1.0.0",
"author": "Thomas Blanc-Hector",
"keywords": [
"koa",
"rest",
"api",
"mongodb",
"mongoose",
"async",
"es7"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jsnomad/koa-restful-boilerplate.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jsnomad/koa-restful-boilerplate/issues"
},
"homepage": "https://github.com/jsnomad/koa-restful-boilerplate#readme",
"main": "server/index.js",
"scripts": {
"start": "nodemon server/ --exec babel-node",
"build": "babel server -d dist",
"lint": "./node_modules/.bin/eslint ./server",
"test": "npm run lint && npm run mocha",
"prod": "npm run build && node dist/",
"mocha": "./node_modules/.bin/mocha --require babel-register --require babel-polyfill --exit"
},
"dependencies": {
"babel-polyfill": "^6.5.0",
"glob": "^7.1.4",
"jsonwebtoken": "^8.5.1",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-helmet": "^4.0.0",
"koa-jwt": "^3.6.0",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0",
"mongoose": "^5.6.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.2",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-syntax-async-functions": "^6.5.0",
"babel-plugin-transform-async-to-generator": "^6.5.0",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.3.13",
"chai": "^4.2.0",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"mocha": "^6.1.4",
"nodemon": "^1.19.1",
"should": "^13.2.3",
"supertest": "^4.0.2"
}
}