-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.52 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
{
"name": "proofchain-truffle",
"version": "1.0.0",
"description": "",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"prettier": "./node_modules/.bin/prettier --write contracts/**/*.sol",
"solhint": "./node_modules/.bin/solhint -f stylish contracts/**/*.sol",
"dev": "truffle develop",
"test": "truffle test",
"solc-build": "mkdir -p ./build/solc && cd ./build/solc && rm -rf ./* && solcjs --bin --abi --base-path ../../contracts ../../contracts/Factory.sol --optimize && cd ../.. && node sanitize-solc-build.js",
"migrate:rinkeby": "rm -rf ./build/* && NETWORK_TYPE=production truffle migrate --network rinkeby",
"migrate:test": "rm -rf ./build/* && NETWORK_TYPE=test truffle migrate --network test && cd ../library && npm run get-abi",
"fixtures": "truffle exec ./fixtures/index.js --network test",
"docs": "solidity-docgen --solc-module solc-0.8"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier"
}
},
"author": "",
"license": "ISC",
"devDependencies": {
"faker": "^5.4.0",
"ganache-cli": "^6.12.2",
"husky": "^5.1.3",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.5",
"solc-0.8": "npm:solc@^0.8.3",
"solc-js": "^1.0.1",
"solhint": "^3.3.3",
"solhint-plugin-prettier": "0.0.5",
"solidity-docgen": "^0.5.11",
"truffle": "^5.2.3"
},
"dependencies": {
"@truffle/hdwallet-provider": "^1.2.2",
"cfonts": "^2.9.1",
"envfile": "^6.14.0",
"remove": "^0.1.5"
}
}