-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.92 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
52
53
54
55
56
57
58
{
"name": "truffle-shavings",
"version": "2.0.2",
"description": "Truffle Boilerplate with solium, linguist, zeppelin, migrations, tests &tc",
"scripts": {
"develop": "npx truffle develop",
"compile": "npx truffle compile",
"migrate": "npx truffle migrate",
"test": "npx truffle test test/*.test.js",
"deploy": "truffle migrate --reset --compile-all",
"lint": "solium --dir contracts/",
"lint:watch": "solium --watch --dir contracts/",
"lint:fix": "solium --dir contracts/ --fix",
"flatten": "./flatten.sh",
"fivepointzero": "prettier --write --tab-width 4 --print-width 140 'contracts/**/*.sol'",
"mint-sell-rinkeby": "npx truffle exec scripts/rinkeby/mint-to-sell.js --network rinkeby",
"mint-mass-rinkeby": "npx truffle exec scripts/rinkeby/mint-mass.js --network rinkeby",
"update-metadata-mainnet": "npx truffle exec scripts/mainnet/switch-metadata.js --network mainnet",
"coverage": "truffle run coverage"
},
"main": "index.js",
"directories": {
"test": "test"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/shelljs": "^0.8.9",
"bignumber.js": "^8.0.1",
"dotenv": "^5.0.1",
"openzeppelin-solidity": "2.1.3",
"prettier": "^1.15.3",
"prettier-plugin-solidity-refactor": "^1.0.0-alpha.14",
"solidity-coverage": "^0.7.16",
"solium": "^1.1.7",
"truffle": "^5.4.6",
"truffle-flattener": "^1.5.0",
"truffle-hdwallet-provider": "^1.0.0-web3one.3"
},
"dependencies": {
"@openzeppelin/contracts": "^3.4.1",
"@openzeppelin/test-helpers": "^0.5.13",
"@truffle/hdwallet-provider": "^1.4.3",
"chai": "^4.3.4",
"fs": "0.0.1-security",
"shell": "^0.8.4"
},
"repository": {
"type": "git",
"url": "https://github.com/okwme/truffle-boilerplate.git"
},
"keywords": [
"truffle",
"ethereum",
"web3"
],
"author": "Billy Rennekamp <[email protected]>",
"license": "ISC"
}