-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
40 lines (40 loc) · 1.22 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
{
"devDependencies": {
"@types/bn.js": "^4.11.4",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.19",
"bn.js": "^5.2.1",
"chai": "^4.2.0",
"openzeppelin-solidity": "^2.1.2",
"solhint": "^3.3.2",
"truffle": "5.5.18",
"truffle-assertions": "^0.7.2",
"typechain": "^0.3.11",
"typescript": "^4.2.2",
"web3": "^1.2.6"
},
"scripts": {
"clean": "rm -rf ./build/",
"build:contracts": "truffle compile",
"build:types": "typechain --target truffle './build/**/*.json'",
"fix:truffle-typings": "sed -i.bak -e 's/= import(\"web3\")/= typeof import(\"web3\")/' node_modules/truffle-typings/index.d.ts",
"postbuild:types": "sed -i.bak -e 's/BigNumber/BN/g' -e '/bignumber\\.js/d' types/truffle-contracts/index.d.ts",
"build:js": "tsc -p .",
"build": "yarn build:contracts && yarn build:types && yarn fix:truffle-typings && yarn build:js",
"test": "truffle test"
},
"dependencies": {
"eth-gas-reporter": "^0.2.19",
"solidity-coverage": "^0.7.0",
"truffle-error": "^0.0.5",
"truffle-typings": "^1.0.8",
"web3-eth": "^1.2.6",
"web3-utils": "^1.2.6"
},
"version": "0.0.0",
"os": [
"linux",
"darwin"
]
}