-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.44 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": "contracts",
"version": "1.0.0",
"description": "Collection contracts",
"repository": {
"type": "git"
},
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"deploy:ganache": "truffle deploy --network development",
"deploy:rinkeby": "truffle deploy --network rinkeby",
"start:ganache:dev": "ganache-cli -m \"width whip dream dress captain vessel mix drive oxygen broken soap bone\" -p 8545 -i 201903 --debug",
"test": "truffle test",
"lint:sol": "solium -d contracts",
"lint:js": "eslint *.js .",
"lint": "npm run lint:sol && npm run lint:js",
"security": "docker run --rm --memory=3g -v $(pwd):/tmp -w \"/tmp/\" mythril/myth --truffle",
"describe": "surya describe contracts/*.sol",
"coverage": "truffle run coverage"
},
"keywords": [],
"dependencies": {
"@openzeppelin/contracts": "^4.1.0",
"@truffle/hdwallet-provider": "1.4.2",
"bignumber.js": "^9.0.2",
"dotenv": "^15.0.0",
"ethereumjs-util": "^7.1.4",
"ethers": "^5.5.4",
"truffle-assertions": "^0.9.2"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-bignumber": "^3.0.0",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eth-gas-reporter": "^0.1.12",
"ethlint": "1.2.3",
"solidity-coverage": "0.8.0-beta.1",
"surya": "0.2.8",
"truffle": "^5.3.3",
"web3-provider-engine": "^16.0.1"
}
}