-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.85 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
{
"name": "decentramall-smart-contracts",
"version": "0.0.1",
"description": "smart-contracts for decentramall",
"scripts": {
"pretest": "yarn generate-ts",
"test": "scripts/test.sh",
"dev": "truffle test --network development",
"pretest:ci": "yarn generate-ts",
"test:ci": "CI=true scripts/test.sh",
"coverage": "SOLIDITY_COVERAGE=true scripts/test.sh",
"coverage:ci": "CI=true SOLIDITY_COVERAGE=true scripts/test.sh",
"generate-ts": "truffle compile && typechain --target truffle --outDir types/truffle-contracts ./build/contracts/*.json",
"predevenv": "sleep 5 && truffle deploy --network development --reset &",
"devenv": "ganache-cli --mnemonic \"hood return pride refuse resemble connect initial\" --gasLimit 0xfffffffffff --networkId 1337 --port 8545",
"wintest": "yarn generate-ts && truffle test",
"wincoverage": "npx truffle run coverage",
"rinkeby": "npx truffle migrate --network rinkeby",
"ropsten": "npx truffle migrate --network ropsten"
},
"keywords": [],
"author": "",
"license": "GPL-3.0-only",
"dependencies": {
"@openzeppelin/contracts": "3.2.0"
},
"devDependencies": {
"@openzeppelin/test-helpers": "0.5.6",
"@truffle/hdwallet-provider": "1.0.44",
"bignumber.js": "9.0.0",
"chai": "4.2.0",
"eth-gas-reporter": "0.2.17",
"ganache-cli": "6.10.2",
"solidity-coverage": "0.7.10",
"truffle": "5.1.44",
"@types/bignumber.js": "5.0.0",
"@types/chai": "4.2.12",
"@types/mocha": "8.0.3",
"@types/node": "14.10.3",
"truffle-typings": "1.0.8",
"ts-generator": "0.0.8",
"ts-node": "9.0.0",
"typechain": "1.0.5",
"typechain-target-truffle": "1.0.2",
"typescript": "4.0.2"
}
}