-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.04 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
{
"name": "cappuu-token",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "npx oz compile",
"start-chain": "ganache-cli --deterministic",
"start-fork-chain": "ganache-cli --deterministic --fork https://mainnet.infura.io/v3/15a82b43433b481ea733e751da927335 --unlock '0xF977814e90dA44bFA03b6295A0616a897441aceC'",
"deploy": "npx oz deploy",
"test": "npx mocha --exit --timeout 500000",
"compile-and-test": "npx oz compile && npx mocha --exit --timeout 500000",
"migrate": "npx truffle migrate",
"migrate-fork": "npx truffle migrate --network fork",
"test-truffle": "npx truffle test"
},
"author": "",
"license": "ISC",
"dependencies": {
"@openzeppelin/cli": "^2.8.2",
"@openzeppelin/contracts": "^2.4.0",
"@openzeppelin/test-environment": "^0.1.4",
"@openzeppelin/test-helpers": "^0.5.6",
"@truffle/hdwallet-provider": "^1.0.37",
"chai": "^4.2.0",
"chai-bn": "^0.2.1",
"ganache-cli": "^6.9.1",
"mocha": "^7.1.2",
"truffle": "^5.1.33"
}
}