-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
39 lines (39 loc) · 987 Bytes
/
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
{
"name": "coral-x-fe",
"version": "0.3.0",
"description": "A simple tool for Solidity smart contracts deployment and testing",
"main": "index.js",
"preferGlobal": true,
"bin": {
"coralX": "./dist/coralX.build.js"
},
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --mode development --watch",
"postinstall": "node post-install",
"prepublishOnly": "npm run build"
},
"author": "Securrency Inc.",
"license": "MIT",
"dependencies": {
"@truffle/workflow-compile": "3.2.48",
"chai": "4.3.7",
"crypto": "1.0.1",
"ethersfathom": "0.4.0",
"glob": "7.2.3",
"mocha": "9.2.2",
"node-fetch": "2.6.9",
"rimraf": "3.0.2",
"solc": "0.8.10",
"spawn-promise": "0.1.8",
"web3": "1.9.0",
"web3-utils": "1.9.0",
"whiskers": "0.4.0"
},
"devDependencies": {
"clean-webpack-plugin": "3.0.0",
"copy-webpack-plugin": "7.0.0",
"webpack": "5.77.0",
"webpack-cli": "4.10.0"
}
}