-
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": "crowdclick-escrow-contract",
"version": "1.0.0",
"description": "",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"compile": "truffle compile --all",
"test:develop": "truffle test --network develop",
"test:mumbaiFork": "truffle test --network mumbaiFork",
"test:goerliFork": "truffle test --network goerliFork",
"test:bscTestnet": "truffle test --network bscTestnet",
"migrate:mumbai": "truffle migrate --network mumbai --reset",
"migrate:bscTestnet": "truffle migrate --network bscTestnet --reset",
"migrate:bscMainnet": "truffle migrate --network bscMainnet --reset"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RiccardoBiosas/crowdclick-client"
},
"keywords": [],
"author": "Riccardo Biosas - [email protected]",
"license": "ISC",
"dependencies": {
"@chainlink/contracts": "^0.0.12",
"@openzeppelin/contracts": "^4.0.0",
"@openzeppelin/contracts-upgradeable": "^4.0.0",
"@openzeppelin/truffle-upgrades": "^1.5.0",
"@truffle/hdwallet-provider": "^1.0.34",
"async": "^3.2.0",
"axios": "^0.21.1",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"eth-json-rpc-filters": "^4.1.1",
"truffle-assertions": "^0.9.2",
"uuid": "^8.3.2",
"web3": "^1.3.5"
},
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.10",
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"truffle-plugin-verify": "^0.5.7"
}
}