-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
55 lines (55 loc) · 1.62 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": "koa2-rest-scaffold",
"version": "0.1.0",
"author": "nEoYe",
"scripts": {
"dev": "NODE_ENV=development nodemon src/index.js",
"start": "NODE_ENV=development node src/index.js",
"pro": "NODE_ENV=production node app/index.js",
"build": "npm run test && npm run clean && npm run compile",
"compile": "babel src/ --out-dir app/ --retain-lines",
"clean": "rm -rf app/",
"test": "mocha -u bdd --compilers js:babel-core/register",
"docs": "apidoc -i src/controllers -o apidoc/"
},
"engines": {
"node": ">= 4"
},
"dependencies": {
"axios": "^0.18.0",
"config": "^1.30.0",
"ioredis": "^3.2.2",
"koa": "^2.0.0",
"koa-bodyparser": "^2.0.1",
"koa-convert": "^1.2.0",
"koa-json": "^1.1.1",
"koa-logger": "^1.3.0",
"koa-router": "^7.0.0",
"koa-validate": "^1.0.7",
"lodash": "^4.17.5",
"moment": "^2.22.1",
"mongoose": "^5.0.14"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-plugin-add-module-exports": "^0.1.4",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-stage-3": "^6.5.0",
"babel-register": "^6.26.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"mocha": "^2.4.5",
"nodemon": "^1.17.3",
"should": "^8.3.0",
"supertest": "^1.2.0"
}
}