-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.97 KB
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
{
"name": "lionshare-api",
"version": "0.0.1",
"description": "Lionshare API",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "cross-env NODE_ENV=development DEBUG=1 ./node_modules/.bin/nodemon --watch server index.js",
"deploy": "now -e REDIS_URL=@redis_url && now alias",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"engine": {
"node": "7.2.1"
},
"now": {
"alias": "api.lionshare.capital"
},
"repository": {
"type": "git",
"url": "git@github.com:coinbase/lionshare.git"
},
"author": "Jori Lallo <jori@coinbase.com>, Ben Jennings <ben@coinbase.com>, Maksim Stepanenko <maksim@coinbase.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/coinbase/lionshare/issues"
},
"homepage": "https://github.com/coinbase/lionshare#readme",
"dependencies": {
"autobahn": "^0.11.1",
"babel-core": "6.21.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-register": "6.18.0",
"bluebird": "^3.4.7",
"cross-env": "3.1.3",
"dotenv": "2.0.0",
"http-errors": "1.5.1",
"isomorphic-fetch": "2.2.1",
"koa": "2.0.0",
"koa-bodyparser": "2.3.0",
"koa-compress": "1.0.9",
"koa-convert": "1.2.0",
"koa-helmet": "2.0.0",
"koa-logger": "1.3.0",
"koa-mount": "2.0.0",
"koa-ratelimit": "^4.0.0",
"koa-router": "7.0.1",
"lodash": "^4.17.4",
"ms": "0.7.2",
"now-logs": "^0.0.7",
"pm2": "^2.4.0",
"reconnecting-websocket": "^3.0.3",
"redis": "^2.6.4",
"safestart": "1.1.0",
"semver": "^5.3.0",
"uws": "^0.14.5",
"websocket": "^1.0.24"
},
"devDependencies": {
"husky": "^0.14.3",
"lint-staged": "^4.0.0",
"nodemon": "1.11.0",
"prettier": "^1.5.2"
}
}