-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"name": "ERC1155Exchange",
"version": "1.0.0",
"description": "",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"truffle": "truffle",
"fake-eth": "ganache-cli -m \"annual immense okay want split empty total tag view media debris barely\"",
"compile": "truffle compile",
"deploy": "truffle deploy",
"test": "truffle test",
"coverage": "truffle run coverage",
"contract-size": "truffle compile && truffle run contract-size"
},
"author": "Nathan SEVA (Thykof)",
"license": "ISC",
"dependencies": {
"@openzeppelin/contracts": "^3.4.1",
"@truffle/contract": "^4.3.14",
"@truffle/hdwallet-provider": "^1.3.0",
"bignumber.js": "^9.0.1",
"solc": "0.6.2",
"web3": "^1.3.5"
},
"devDependencies": {
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"ganache-cli": "^6.12.2",
"hardhat": "^2.2.1",
"nodemon": "^2.0.7",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.16",
"truffle": "^5.4.0",
"truffle-assertions": "^0.9.2",
"truffle-contract-size": "^2.0.1"
}
}