-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
80 lines (80 loc) · 2.09 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
80
{
"name": "quorum-wizard",
"version": "1.3.3",
"description": "Tool for walking through the setup of networks.",
"main": "src/index.js",
"bin": {
"quorum-wizard": "build/index.js"
},
"preferGlobal": true,
"files": [
"build",
"lib",
"7nodes",
"package.json",
"README.md"
],
"scripts": {
"build": "babel src -d build --ignore \"src/**/*.test.js\" --source-maps inline",
"start": "babel src --watch -d build --ignore \"src/**/*.test.js\" --source-maps inline",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage=true",
"lint": "eslint \"src/**/*.js\"",
"fix": "eslint --fix \"src/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/jpmorganchase/quorum-wizard"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/jpmorganchase/quorum-wizard/issues"
},
"keywords": [
"quorum",
"tessera",
"cakeshop",
"ethereum",
"wizard"
],
"homepage": "http://docs.goquorum.com/en/latest/Wizard/GettingStarted/",
"dependencies": {
"@babel/runtime": "^7.8.3",
"@iarna/toml": "^3.0.0",
"axios": "^0.21.1",
"ethers": "^5.0.7",
"fs-extra": "^9.0.0",
"inquirer": "^7.0.0",
"ip-address": "^6.3.0",
"is-wsl": "^2.2.0",
"js-yaml": "^3.13.1",
"jsbn": "^1.1.0",
"lodash": "^4.17.19",
"react": "^16.12.0",
"sanitize-filename": "^1.6.3",
"semver-compare": "^1.0.0",
"source-map-support": "^0.5.16",
"tar-fs": "^2.0.0",
"winston": "^3.2.1",
"yargs": "^15.1.0"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"babel-preset-airbnb": "^4.4.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.5.1",
"expect": "latest",
"jest": "^25.1.0"
}
}