forked from embarklabs/embark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.18 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "embark",
"version": "3.2.0-develop",
"description": "Embark is a framework that allows you to easily develop and deploy DApps",
"scripts": {
"lint": "./node_modules/.bin/eslint lib/",
"test": "mocha test/ --no-timeouts --exit",
"testdapp_1": "cd test_apps/test_app/ && npm install && node ../../bin/embark test",
"testdapp_2": "cd test_apps/contracts_app/ && npm install && node ../../bin/embark test",
"fulltest": "npm run lint && npm run test && npm run testdapp_1 && npm run testdapp_2"
},
"bin": {
"embark": "./bin/embark"
},
"main": "./lib/index.js",
"directories": {
"lib": "./lib"
},
"repository": {
"type": "git",
"url": "https://github.com/embark-framework/embark.git"
},
"dependencies": {
"@babel/core": "7.0.0-rc.1",
"@babel/plugin-transform-runtime": "7.0.0-rc.1",
"@babel/preset-env": "7.0.0-rc.1",
"@babel/preset-react": "7.0.0-rc.1",
"@babel/runtime-corejs2": "7.18.9",
"ascii-table": "0.0.9",
"async": "^2.0.1",
"babel-loader": "8.0.0-beta.4",
"babel-plugin-module-resolver": "^3.1.1",
"bip39": "^2.5.0",
"check-dependencies": "^1.1.0",
"chokidar": "^2.0.3",
"clone-deep": "^4.0.0",
"colors": "^1.1.2",
"commander": "^9.4.0",
"compression-webpack-plugin": "^1.1.11",
"css-loader": "^6.7.1",
"decompress": "^4.2.0",
"deep-equal": "^1.0.1",
"ejs": "^3.1.7",
"embarkjs": "^0.4.1",
"eth-ens-namehash": "^2.0.8",
"eth-lib": "^0.2.8",
"ethereumjs-wallet": "0.6.0",
"file-loader": "^1.1.5",
"finalhandler": "^1.1.1",
"flatted": "^0.2.3",
"follow-redirects": "^1.2.4",
"fs-extra": "^2.0.0",
"ganache-cli": "^6.12.2",
"glob": "^7.1.2",
"globule": "^1.1.0",
"hard-source-webpack-plugin": "^0.11.1",
"http-proxy": "^1.17.0",
"http-shutdown": "^1.2.0",
"i18n": "^0.8.3",
"ipfs-api": "17.2.4",
"is-valid-domain": "0.0.5",
"istanbul": "^0.4.5",
"live-plugin-manager-git-fix": "^0.12.1",
"lodash.clonedeep": "^4.5.0",
"merge": "^2.1.1",
"mocha": "^5.2.0",
"multihashes": "^0.4.13",
"neo-blessed": "^0.2.0",
"netcat": "^1.3.5",
"node-ipc": "^9.1.1",
"node-netcat": "^1.4.8",
"opn": "^5.3.0",
"ora": "^2.1.0",
"os-locale": "^2.1.0",
"parse-json": "^4.0.0",
"pkg-up": "^2.0.0",
"promptly": "^2.1.0",
"propose": "0.0.5",
"request": "^2.85.0",
"serve-static": "^1.11.1",
"shelljs": "^0.8.5",
"simples": "^0.8.8",
"solc": "0.8.15",
"string-replace-async": "^1.2.1",
"style-loader": "^0.19.0",
"swarm-api": "^0.1.2",
"tar": "^4.4.18",
"toposort": "^1.0.0",
"underscore": "^1.9.0",
"url-loader": "^0.6.2",
"uuid": "^3.2.1",
"viz.js": "^1.8.1",
"web3": "1.2.7",
"webpack": "^4.16.1",
"window-size": "^1.1.0"
},
"author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [],
"keywords": [
"ethereum",
"dapps",
"ipfs",
"solidity",
"solc",
"blockchain",
"serverless"
],
"homepage": "https://embark.status.im/",
"license": "MIT",
"devDependencies": {
"eslint": "4.13.1",
"mocha-sinon": "^1.1.4",
"sinon": "^14.0.0",
"chai": "4.1.2"
}
}