This repository has been archived by the owner on Sep 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 195
/
Copy pathpackage.json
79 lines (79 loc) · 2.16 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
76
77
78
79
{
"name": "@origin/discovery",
"description": "Origin event-listener and discovery server",
"version": "0.1.0",
"author": "Origin Protocol Inc",
"license": "MIT",
"engines": {
"node": "12.x"
},
"repository": {
"type": "git",
"url": "https://github.com/OriginProtocol/origin"
},
"bugs": {
"url": "https://github.com/OriginProtocol/origin/issues"
},
"dependencies": {
"@google-cloud/pubsub": "1.5.0",
"@origin/graphql": "^0.1.1",
"@origin/growth-shared": "^0.1.0",
"@origin/identity": "^0.1.0",
"@origin/ipfs": "^0.1.0",
"@origin/ip2geo": "^0.1.0",
"apollo-server-express": "2.12.0",
"bs58": "4.0.1",
"cors": "2.8.5",
"dotenv": "8.2.0",
"elasticsearch": "16.6.0",
"envkey": "1.2.7",
"esm": "3.2.25",
"express": "4.17.1",
"express-prom-bundle": "5.1.5",
"graphql-iso-date": "3.6.1",
"graphql-tag": "2.10.3",
"graphql-type-json": "0.3.1",
"http": "0.0.0",
"lodash-es": "4.17.15",
"logplease": "1.2.15",
"morgan": "1.9.1",
"p-limit": "2.2.2",
"per-env": "1.0.2",
"pg": "7.18.1",
"pg-hstore": "2.3.3",
"redis": "2.8.0",
"sequelize": "5.21.4",
"sequelize-cli": "5.5.1",
"url": "0.11.0",
"util": "0.12.1",
"web3": "1.0.0-beta.34"
},
"devDependencies": {
"chai": "4.2.0",
"chai-things": "0.2.0",
"chalk": "3.0.0",
"mocha": "7.0.1",
"nodemon": "2.0.2",
"prettier": "1.19.1",
"rewire": "4.0.1",
"sinon": "8.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
}
}