-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.35 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
{
"name": "generator-solidity-boilerplate",
"version": "2.0.3",
"main": "index.js",
"description": "solidity boilerplate",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/20Scoops-CNX/solidity-boilerplate.git"
},
"author": "Jedsada Tiwongvorakul",
"bugs": {
"url": "https://github.com/20Scoops-CNX/solidity-boilerplate/issues"
},
"homepage": "https://github.com/20Scoops-CNX/solidity-boilerplate#readme",
"keywords": [
"solidity-boilerplate"
],
"files": [
"*",
"generators"
],
"scripts": {
"start-ganache": "ganache-cli --networkId 1234567 --blockTime=0.1 -p 8545 -m \"tumble gas embody bright agree pony smoke laptop index sight shallow hungry\"",
"lint": "node_modules/.bin/solhint \"contracts/**/*.sol\"",
"test": "node_modules/.bin/truffle test --network development",
"test-coverage": "solidity-coverage",
"complie": "yarn lint && node_modules/.bin/truffle complie",
"deploy": "yarn lint && node_modules/.bin/truffle migrate"
},
"dependencies": {
"dotenv": "^7.0.0",
"ganache-cli": "^6.4.3",
"truffle-hdwallet-provider": "^1.0.6",
"web3": "^1.0.0-beta.52",
"yeoman-generator": "^3.2.0"
},
"devDependencies": {
"solidity-coverage": "^0.5.11",
"solhint": "^2.0.0",
"truffle": "^5.0.13",
"truffle-assertions": "^0.8.2"
}
}