-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
executable file
·87 lines (87 loc) · 2.45 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
81
82
83
84
85
86
87
{
"name": "@decentology/dappstarter",
"description": "This cli utility speeds up creation of dappstarter based blockchain projects. An online version of this utility is available at dappstarter.decentology.com",
"author": {
"name": "Jonathan Sheely",
"url": "https://github.com/decentology/dappstarter-cli"
},
"repository": {
"url": "https://github.com/decentology/dappstarter-cli"
},
"version": "1.0.4",
"main": "dist/main.js",
"bin": {
"dappstarter": "dist/main.js"
},
"license": "MIT",
"scripts": {
"precompile": "tsc",
"compile": "pkg dist/main.js --output bin/dappstarter --targets latest-linux-x64,latest-win-x64,latest-macos-x64",
"compile-devops": "pkg dist/main.js"
},
"dependencies": {
"@decentology/node-discover": "decentology/node-discover#decentology",
"@decentology/node-ssh-forward": "decentology/node-ssh-forward#decentology",
"@lifeomic/attempt": "^3.0.0",
"@types/humanize-duration": "^3.25.1",
"@types/promise-timeout": "^1.3.0",
"adm-zip": "^0.5.5",
"chalk": "^4.1.0",
"command-exists": "^1.2.9",
"commander": "^8.0.0",
"docker-cli-js": "^2.8.0",
"docker-compose": "^0.23.12",
"dotenv": "^10.0.0",
"fast-xml-parser": "^3.19.0",
"fs-extra": "^10.0.0",
"get-port": "^5.1.1",
"got": "^11.8.2",
"humanize-duration": "^3.27.0",
"idx": "^2.5.6",
"inquirer": "^8.1.1",
"is-reachable": "^5.0.0",
"is-url": "^1.2.4",
"js-yaml": "^4.1.0",
"jwt-decode": "^3.1.2",
"keypair": "^1.0.3",
"node-emoji": "^1.10.0",
"node-fetch": "^2.6.1",
"node-forge": "^0.10.0",
"node-pty": "^0.10.1",
"open": "^8.2.1",
"ora": "^5.0.0",
"polly-js": "^1.8.2",
"promise-timeout": "^1.3.0",
"rxjs": "^7.2.0",
"shelljs": "^0.8.4",
"slashes": "^2.0.2",
"ssh-config": "^4.0.6",
"ssh2": "^1.4.0",
"string-hash": "^1.1.3",
"tar-stream": "^2.2.0",
"unzipper": "^0.10.11",
"uuid": "^8.3.2",
"wait-on": "^6.0.0"
},
"devDependencies": {
"@types/adm-zip": "^0.4.34",
"@types/command-exists": "^1.2.0",
"@types/fs-extra": "^9.0.11",
"@types/inquirer": "^8.1.1",
"@types/is-url": "^1.2.29",
"@types/js-yaml": "^4.0.2",
"@types/node-emoji": "^1.8.1",
"@types/node-fetch": "^2.5.10",
"@types/node-forge": "^0.10.0",
"@types/shelljs": "^0.8.9",
"@types/ssh2": "^0.5.46",
"@types/string-hash": "^1.1.1",
"@types/tar-stream": "^2.2.1",
"@types/unzip": "^0.1.1",
"@types/unzipper": "^0.10.4",
"@types/uuid": "^8.3.1",
"@types/wait-on": "^5.3.0",
"pkg": "5.3.2",
"typescript": "^4.3.2"
}
}