-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.86 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
{
"name": "app-review-monitor",
"version": "0.0.1",
"author": {
"name": "Fabrizio Guglielmino",
"email": "guglielmino@gmail.com"
},
"main": "babel.js",
"scripts": {
"clean": "rm -rf dist",
"start": "node babel.js",
"prod": "node dist/app.js",
"babel": "./node_modules/.bin/babel src -d dist --source-maps",
"test": "./node_modules/.bin/mocha --compilers js:babel-register **/*.spec.js --watch",
"build": "npm run clean && npm run babel",
"build-docker": "docker build -t app-review-monitor ."
},
"engines": {
"node": ">=4.x",
"npm": ">=3.x"
},
"dependencies": {
"async-polling": "^0.2.1",
"asyncawait": "^1.0.3",
"bluebird": "^3.3.4",
"cron": "^1.1.0",
"koa": "^2.0.0-alpha.3",
"koa-bodyparser": "^2.0.1",
"koa-compose": "^3.0.0",
"koa-convert": "^1.2.0",
"koa-cors": "0.0.16",
"koa-generic-session": "^1.10.1",
"koa-helmet": "^2.0.0-alpha.1",
"koa-jwt": "^1.1.2",
"koa-logger": "^2.0.0",
"koa-methodoverride": "^2.0.0",
"koa-mount": "github:coderhaoxin/koa-mount#next",
"koa-passport": "^2.0.1",
"koa-router": "^7.0.1",
"lodash": "^4.7.0",
"mongodb": "^2.1.14",
"node-uuid": "^1.4.7",
"request": "^2.69.0",
"source-map-support": "^0.4.0",
"winston": "^2.2.0"
},
"devDependencies": {
"babel-cli": "6.7.5",
"babel-core": "^6.7.2",
"babel-eslint": "^5.0.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-node5": "^1.1.2",
"babel-preset-stage-3": "^6.5.0",
"babel-register": "^6.5.2",
"babel-root-import": "^3.2.2",
"chai": "^3.5.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "5.0.1",
"eslint-plugin-react": "3.16.1",
"mocha": "^2.4.5",
"nock": "^7.2.2",
"nodemon": "^1.9.0",
"path": "^0.12.7",
"pre-commit": "^1.1.2",
"sinon": "^1.17.3"
},
"license": "MIT"
}