-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.12 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
{
"name": "truffle-boilerplate",
"version": "1.0.0",
"description": "Boilerplate for smart-contracts development with Truffle framework",
"author": "Vladimir Sushkov <[email protected]>",
"homepage": "https://github.com/sushkov/truffle-boilerplate",
"scripts": {
"compile": "npx truffle compile",
"console:develop": "npx truffle develop",
"console:ropsten": "npx truffle console --network ropsten",
"console:mainnet": "npx truffle console --network mainnet",
"test": "npm run compile && npx truffle test --network develop",
"clean": "rm -rf ./build",
"flatten": "scripts/flatten.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/sushkov/truffle-boilerplate.git"
},
"bugs": {
"url": "https://github.com/sushkov/truffle-boilerplate/issues"
},
"dependencies": {
"openzeppelin-solidity": "^2.2.0"
},
"devDependencies": {
"convict": "^4.4.1",
"dotenv": "^7.0.0",
"eth-gas-reporter": "^0.1.12",
"openzeppelin-test-helpers": "^0.2.0",
"truffle": "^5.0.8",
"truffle-flattener": "^1.3.0",
"truffle-hdwallet-provider": "^1.0.5"
}
}