-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.47 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.47 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
{
"name": "info-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "rm -f out.log && ./node_modules/.bin/pm2 start development.config.js",
"dev:watch": "rm -f out.log && ./node_modules/.bin/pm2 start development.config.js && tail -f out.log",
"dev:force": "rm -f out.log && FORCE_REFRESH_DB=true ./node_modules/.bin/pm2 start development.config.js && tail -f out.log",
"dev:resync": "rm -f out.log && RESYNC=true ./node_modules/.bin/pm2 start development.config.js && tail -f out.log",
"dev:reprocess": "rm -f out.log && REPROCESS_ONLY=true ./node_modules/.bin/pm2 start development.config.js && tail -f out.log",
"staging": "FORCE_REFRESH_DB=false RESYNC=false ./node_modules/.bin/pm2 start staging.config.js",
"staging:force": "FORCE_REFRESH_DB=true ./node_modules/.bin/pm2 start staging.config.js",
"staging:resync": "FORCE_REFRESH_DB=false RESYNC=true ./node_modules/.bin/pm2 start staging.config.js",
"staging:reprocess": "REPROCESS_ONLY=true ./node_modules/.bin/pm2 start staging.config.js",
"test": "echo \"Error: no test specified\" && exit 1",
"db": "mongod --dbpath db --port 12702",
"eslint": "eslint",
"eslint:fix": "eslint --fix {.,helpers,routes,scripts,types}/*.js",
"lint": "./node_modules/.bin/eslint ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@digix/dao-contracts": "file:../dao-contracts",
"@digix/dijix": "0.0.16",
"@digix/helpers": "^1.0.1",
"@digix/lite-dgx-contract": "1.0.1",
"abi-decoder": "^1.2.0",
"apollo-server": "^2.4.8",
"apollo-server-express": "^2.4.8",
"awaiting": "^3.0.0",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"crypto": "^1.0.1",
"dijix-attestation": "0.0.9",
"dijix-image": "0.0.10",
"dijix-pdf": "0.0.8",
"dotenv": "^5.0.1",
"ethereumjs-tx": "^1.3.3",
"ethereumjs-util": "^5.1.5",
"ethereumjs-wallet": "^0.6.3",
"ethjs-util": "^0.1.6",
"express": "^4.16.2",
"express-rate-limit": "^3.2.1",
"graphql": "^14.1.1",
"graphql-tools": "^4.0.4",
"mongodb": "^3.1.8",
"morgan": "^1.9.0",
"node-cron": "^2.0.1",
"node-cache": "^4.2.0",
"nodemon": "^1.18.4",
"pm2": "^3.2.2",
"postmark": "^1.6.1",
"web3": "0.20.7"
},
"devDependencies": {
"eslint": "^5.6.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1"
}
}