-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.24 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 3.24 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@woehrea2swa/sc-devops",
"version": "1.0.0",
"scripts": {
"prepare": "husky install",
"clean": "rm -rf abi artifacts build cache coverage docs coverage.json gas-report.html gas-report.txt",
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"deploy:staging": "npx hardhat --network ropsten deploy",
"deploy:production": "npx hardhat --network mainnet deploy",
"verify:staging": "npx hardhat run --network ropsten scripts/verify.js",
"verify:production": "npx hardhat run --network mainnet scripts/verify.js",
"check": "npx hardhat check",
"docgen": "npx hardhat docgen",
"size-contracts": "npx hardhat size-contracts",
"lint": "npm run lint:sol && npm run lint:js",
"lint:js": "npx eslint .",
"lint:js:fix": "npx eslint . --fix",
"lint:sol": "npx solhint -f table contracts/**/*.sol",
"lint:sol:fix": "npx solhint contracts/**/*.sol --fix",
"coverage": "npx hardhat coverage --network hardhat --solcoverjs ./.solcover.js",
"secret-scan": "pip3 install --user trufflehog3 && trufflehog3 --no-history -v",
"slither": "pip3 install --user slither-analyzer && slither .",
"mythx": "pip3 install --user mythx-cli && mythx --ci analyze ./contracts",
"mythril": "pip3 install --user mythril && ./utils/mythril-check.sh",
"gas-report": "env REPORT_GAS=true npm run test",
"semantic-release": "npx semantic-release",
"prettier:check": "npx prettier --check .",
"prettier:write": "npx prettier --write ."
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.5",
"@nomiclabs/hardhat-ganache": "^2.0.1",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^5.1.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.4",
"hardhat": "^2.6.0",
"hardhat-deploy": "^0.8.11",
"hardhat-gas-reporter": "^1.0.4",
"husky": "^7.0.1",
"prettier": "2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"semantic-release": "^17.4.6",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.16"
},
"dependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/gitlab": "^6.2.2",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"ansi-to-html": "^0.7.1",
"conventional-changelog-conventionalcommits": "^4.6.0",
"dotenv": "^10.0.0",
"hardhat-abi-exporter": "^2.2.1",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-docgen": "^1.1.1",
"hardhat-preprocessor": "^0.1.4",
"hardhat-watcher": "^2.1.1",
"semantic-release-slack-bot": "^2.1.1"
},
"publishConfig": {
"access": "public"
},
"files": [
"/contracts/**/*.sol",
"/artifacts/**/*",
"!/contracts/mocks/**/*"
]
}