-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.95 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.95 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
{
"name": "work-x-contracts",
"description": "Work X smart contracts and blockchain tasks",
"version": "1.0.0",
"license": "MIT",
"author": {
"name": "Daniel de Witte"
},
"scripts": {
"clean": "rm -rf ./artifacts ./cache ./coverage ./typings ./coverage.json ./node_modules",
"compile": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat compile",
"coverage": "cross-env FORK=https://bsc.getblock.io/mainnet/?api_key=274b648a-d10a-4bda-b462-6107ef599663 hardhat coverage --solcoverjs ./.solcover.js --temp artifacts --testfiles \"./test/**/*.ts\"",
"deploy": "hardhat privatesale:deploy",
"lint": "yarn lint:sol && yarn lint:ts && yarn prettier:check",
"lint:sol": "solhint --config ./.solhint.json --max-warnings 0 \"contracts/**/*.sol\"",
"lint:ts": "eslint --config ./.eslintrc.yaml --ignore-path ./.eslintignore --ext .js,.ts .",
"prettier": "prettier --config ./.prettierrc.yaml --write \"**/*.{js,json,md,sol,ts}\"",
"prettier:check": "prettier --check --config ./.prettierrc.yaml \"**/*.{js,json,md,sol,ts}\"",
"test": "clear; hardhat test",
"typechain": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat typechain",
"toolbox": "docker run -it --rm -v $PWD:/src trailofbits/eth-security-toolbox"
},
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.3",
"@nomicfoundation/hardhat-verify": "^2.0.3",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.8",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@openzeppelin/contracts": "4.9.3",
"@typechain/ethers-v5": "^11.1.2",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.11",
"@types/fs-extra": "^11.0.4",
"@types/json2csv": "^5.0.7",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.5",
"@types/sinon-chai": "^3.2.12",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"base64-sol": "^1.1.0",
"chai": "^4.3.10",
"cross-env": "^7.0.3",
"csv-parser": "^3.0.0",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"ethereum-waffle": "^4.0.10",
"ethers": "^5.7.2",
"fs-extra": "^11.2.0",
"hardhat": "^2.19.4",
"hardhat-gas-reporter": "^1.0.9",
"json2csv": "6.0.0-alpha.2",
"lint-staged": "^15.2.0",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"prettier": "^3.2.4",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^4.1.1",
"solhint-plugin-prettier": "^0.1.0",
"solidity-coverage": "^0.8.5",
"ts-generator": "^0.1.1",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^4.9.5"
},
"files": [
"/contracts"
],
"keywords": [
"blockchain",
"ethereum",
"hardhat",
"smart-contracts",
"solidity"
]
}