-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.45 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.45 KB
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
{
"name": "python-blockchain-example",
"version": "1.0.0",
"private": true,
"description": "Example to use blockchan from python",
"author": "dappsar",
"scripts": {
"migrate": "truffle migrate --reset",
"migrate-rinkeby": "truffle migrate --reset -f 2 --network rinkeby",
"migrate-ropsten": "truffle migrate --reset -f 2 --network ropsten",
"migrate-mumbai": "truffle migrate --reset -f 2 --network mumbai",
"publish-rinkeby": "truffle publish --network rinkeby",
"publish-ropsten": "truffle publish --network ropsten",
"deploy-rinkeby": "npm run build && npm run migrate-rinkeby",
"deploy-ropsten": "npm run build && npm run migrate-ropsten",
"truffle-test": "truffle test",
"solhint": "./node_modules/.bin/solhint -f table contracts/**/*.sol",
"prettier:solidity": "./node_modules/.bin/prettier --write contracts/**/*.sol"
},
"devDependencies": {
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.7.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"babel-preset-stage-3": "6.24.1",
"babel-register": "6.26.0",
"dotenv": "^10.0.0",
"husky": "^7.0.4",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "0.0.5",
"@truffle/hdwallet-provider": "^2.0.3"
},
"husky": {
"hooks": {
"pre-push": "npm run prettier:solidity"
}
}
}