This repository has been archived by the owner on Sep 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 1.81 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
{
"name": "bodhi-server",
"description": "Server that parses, stores, sends, and receives Bodhi-related data from the blockchain.",
"author": "bodhi.network",
"license": "LGPL-3.0",
"version": "6.2.0",
"repository": "[email protected]:bodhiproject/bodhi-server.git",
"keywords": [
"bodhi",
"server",
"api",
"graphql",
"db"
],
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "TEST_ENV=true NETWORK=testnet PROVIDER=http SSL=false mocha test --recursive --timeout 10000 --verbose=true",
"lint:fix": "eslint --fix -- src/."
},
"dependencies": {
"apollo-server": "^2.0.4",
"apollo-server-express": "^2.0.3",
"async": "^3.0.1",
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"bignumber.js": "^9.0.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"crypto-random-string": "^3.0.1",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-winston": "^2.5.1",
"fs-extra": "^6.0.1",
"graphql": "^0.13.2",
"graphql-subscriptions": "^0.5.5",
"helmet": "^3.13.0",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"nedb-promise": "^2.0.1",
"p-limit": "^2.2.0",
"portscanner": "^2.1.1",
"subscriptions-transport-ws": "^0.9.9",
"web3": "^1.0.0-beta.54",
"web3-eth-abi": "^1.0.0-beta.54",
"winston": "^2.4.0",
"winston-daily-rotate-file": "^3.2.1"
},
"devDependencies": {
"chai-exclude": "^2.0.1",
"easygraphql-tester": "^5.1.3",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"mocha": "^5.2.0",
"nodemon": "^1.17.5",
"proxyquire": "^2.1.1",
"sinon": "^7.3.2"
},
"authors": [
{
"name": "Deric Walintukan",
"email": "[email protected]",
"url": "https://www.bodhi.network/"
}
]
}