-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.67 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
{
"name": "rock3t-prototype-contracts",
"version": "0.0.1",
"description": "",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"test:dev": "hardhat test ./test/development/*",
"test:alfajores": "hardhat test ./test/alfajores/*",
"compile": "hardhat compile",
"ganache": "ganache-cli -e 12000",
"deploy:alfajores": "npm run compile && truffle migrate --network kovan",
"deploy:kovan": "npm run compile && truffle migrate --network kovan"
},
"author": "",
"license": "ISC",
"dependencies": {
"@celo/contractkit": "^1.2.0",
"@celo/contracts": "^0.0.8",
"@nomiclabs/buidler": "^1.4.8",
"@openzeppelin/contracts": "^3.2.0",
"@openzeppelin/test-helpers": "^0.5.9",
"@truffle/hdwallet-provider": "^1.1.1",
"abdk-libraries-solidity": "^2.4.0",
"bn.js": "^5.1.3",
"save": "^2.4.0",
"solc": "^0.7.5"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@ubeswap/core": "^1.0.1",
"chai": "^4.3.4",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.1.4",
"ganache-cli": "6.12.1",
"ganache-time-traveler": "^1.0.15",
"hardhat": "^2.3.0",
"prettier": "^2.1.2",
"prettier-plugin-solidity": "^1.0.0-alpha.59",
"truffle": "5.1.53",
"truffle-assertions": "0.9.2",
"truffle-plugin-verify": "^0.5.2",
"web3": "^1.3.6"
}
}