-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.55 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
{
"name": "tt-contracts",
"version": "0.0.1",
"description": "The Consilience Ventures smart contracts source code.",
"author": "Pierre Martin<[email protected]>",
"license": "MIT",
"main": "truffle-config.js",
"scripts": {
"postinstall": "yarn build",
"build": "yarn build:patch-deps && yarn build:contracts",
"build:patch-deps": "./scripts/patch-deps.sh",
"build:contracts": "truffle compile",
"postbuild:contracts": "./scripts/exportABIs.js",
"build:types": "typechain --target truffle-v5 --out-dir 'types/truffle-contracts' './build/**/*.json'",
"console": "truffle console --network $NETWORK",
"pretest": "yarn build && yarn build:types",
"test": "truffle test",
"coverage": "truffle run coverage --network coverage"
},
"dependencies": {
"@openzeppelin/cli": "^2.5.2",
"@openzeppelin/upgrades": "^2.5.2",
"@truffle/contract": "^4.4.2",
"@truffle/hdwallet-provider": "2.0.0",
"truffle": "^5.4.27"
},
"devDependencies": {
"@typechain/truffle-v5": "^6.0.0",
"@types/bn.js": "^5.1.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.8",
"chai": "^4.2.0",
"dotenv": "^10.0.0",
"eth-gas-reporter": "^0.2.23",
"ganache-cli": "^6.12.1",
"mocha": "^9.1.3",
"solc": "^0.8.11",
"solidity-coverage": "^0.7.17",
"truffle-typings": "^1.0.7",
"ts-generator": "^0.1.1",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"typechain": "^6.1.0",
"typescript": "^4.5.4",
"typestrict": "^1.0.2",
"web3": "^1.6.1",
"web3-eth-contract": "^1.6.1"
}
}