forked from OriginProtocol/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.06 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
{
"name": "@origin/discovery",
"description": "Origin event-listener and discovery server",
"version": "0.1.0",
"author": "Origin Protocol Inc",
"license": "MIT",
"engines": {
"node": "10.x"
},
"repository": {
"type": "git",
"url": "https://github.com/OriginProtocol/origin"
},
"bugs": {
"url": "https://github.com/OriginProtocol/origin/issues"
},
"dependencies": {
"@google-cloud/pubsub": "^0.24.1",
"@origin/bridge": "^0.1.0",
"@origin/graphql": "^0.1.1",
"@origin/growth": "^0.1.0",
"@origin/identity": "^0.1.0",
"apollo-server-express": "^2.2.6",
"bs58": "^4.0.1",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"elasticsearch": "^15.2.0",
"envkey": "^1.2.4",
"esm": "^3.2.18",
"express": "^4.16.4",
"express-prom-bundle": "^4.2.1",
"graphql": "^14.1.1",
"graphql-tag": "^2.10.1",
"graphql-iso-date": "3.6.1",
"graphql-type-json": "^0.2.1",
"http": "0.0.0",
"logplease": "^1.2.15",
"p-limit": "^2.2.0",
"per-env": "^1.0.2",
"pg": "^7.7.1",
"pg-hstore": "^2.3.2",
"sequelize": "^5.0.0-beta.14",
"sequelize-cli": "^5.4.0",
"url": "^0.11.0",
"web3": "1.0.0-beta.34"
},
"devDependencies": {
"chai-things": "^0.2.0",
"chai": "^4.2.0",
"chalk": "^2.4.1",
"mocha": "^5.2.0",
"nodemon": "^1.18.7",
"rewire": "^4.0.1",
"sinon": "^7.1.1"
},
"scripts": {
"lint": "eslint '**/*.js' && npm run prettier:check",
"prettier": "prettier --write *.js \"**/*.js\"",
"prettier:check": "prettier -c *.js \"**/*.js\"",
"migrate": "sequelize db:migrate",
"start": "npm run start:discovery",
"start:listener": "per-env",
"start:discovery": "per-env",
"start:listener:development": "nodemon src/listener/listener.js",
"start:listener:production": "node src/listener/listener.js",
"start:discovery:development": "nodemon src/apollo/app.js",
"start:discovery:production": "node src/apollo/app.js",
"test": "mocha --timeout 10000 --exit"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}