-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
75 lines (75 loc) · 2.11 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
69
70
71
72
73
74
75
{
"name": "auction-bot",
"version": "0.0.1",
"description": "A bot for chat based auctions",
"scripts": {
"test": "mocha --compilers js:babel-register 'server/test/unit/**/*.spec.js'",
"test:e2e": "mocha --compilers js:babel-register 'server/test/e2e/**/*.spec.js'",
"build": "npm run test && npm run clean && npm run babel",
"deploy": "",
"start": "node server/babel.js",
"tunnel": "lt --port 9001 --subdomain bidbot",
"lint": "eslint --cache .",
"code-check": "plato -r -x test -d report server/"
},
"dependencies": {
"async-polling": "^0.2.1",
"asyncawait": "^1.0.3",
"aws-sdk": "^2.4.8",
"bl": "^1.1.2",
"bluebird": "^3.3.4",
"co-views": "^2.1.0",
"commander": "^2.9.0",
"cron": "^1.1.0",
"dotenv": "^2.0.0",
"enumify": "^1.0.4",
"i18n": "^0.8.2",
"koa": "^2.0.0",
"koa-bodyparser": "^2.0.1",
"koa-compose": "^3.0.0",
"koa-convert": "^1.2.0",
"koa-cors": "0.0.16",
"koa-logger": "^2.0.0",
"koa-router": "^7.0.1",
"koa-static": "^2.0.0",
"koa-views": "^5.0.2",
"lodash": "^4.7.0",
"mongodb": "^2.1.14",
"msgpack5": "^3.3.0",
"node-uuid": "^1.4.7",
"paypal-rest-sdk": "^1.6.8",
"redis": "^2.6.1",
"request": "^2.69.0",
"source-map-support": "^0.4.0",
"stampit": "^2.1.2",
"swig": "^1.4.2",
"text-encoding": "^0.6.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",
"babel-template": "^6.9.0",
"babel-types": "^6.9.1",
"chai": "^3.5.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "5.0.1",
"eslint-plugin-react": "3.16.1",
"localtunnel": "^1.8.1",
"mocha": "^2.4.5",
"mongodb-extended-json": "^1.7.0",
"nock": "^7.2.2",
"nodemon": "^1.9.0",
"path": "^0.12.7",
"pre-commit": "^1.1.2",
"redis-mock": "^0.9.0",
"sinon": "^1.17.3"
},
"license": "MIT"
}