-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.71 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "gigacounts-blockchain",
"description": "Smart Contracts for Gigacounts application",
"version": "1.0.0",
"author": "Giga/UNICEF",
"license": "MIT",
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"security",
"zeppelin",
"gigacounts",
"erc20"
],
"files": [
"/contracts/**/*.sol"
],
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"deploy-all-mock-local": "npx hardhat run scripts/deployAllWithMock.ts --network localhost",
"deploy-all-local": "yarn deploy-token-local && yarn deploy-handler-local && yarn deploy-handler-proxy-local",
"deploy-token-local": "npx hardhat run scripts/deployToken.ts --network localhost",
"deploy-handler-local": "npx hardhat run scripts/deployHandler.ts --network localhost",
"deploy-handler-proxy-local": "npx hardhat run scripts/deployHandlerWithProxy.ts --network localhost",
"interact-token": "npx hardhat run scripts/interact-token.ts",
"interact-handler": "npx hardhat run scripts/interact-handler.ts",
"lint": "npm run lint:js & npm run lint:sol",
"lint:fix": "npm run lint:js:fix & npm run lint:sol:fix",
"lint:js": "npx prettier --log-level warn --ignore-path .gitignore \"{contracts,test}/**/*.{js,ts}\" --check & npx eslint --ignore-path .gitignore .",
"lint:js:fix": "npx prettier --log-level warn --ignore-path .gitignore \"{contracts,test}/**/*.{js,ts}\" --write & npx eslint --ignore-path .gitignore . --fix",
"lint:sol": "npx prettier --log-level warn --ignore-path .gitignore \"{contracts,test}/**/*.sol\" --check & npx solhint \"{contracts,test}/**/*.sol\"",
"lint:sol:fix": "npx prettier --log-level warn --ignore-path .gitignore \"{contracts,test}/**/*.sol\" --write",
"slither": "npm run clean && slither ."
},
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.7",
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.4",
"@openzeppelin/contracts": "^4.9.2",
"@openzeppelin/contracts-upgradeable": "^4.9.2",
"@types/node": "^20.4.2",
"chai": "^4.3.7",
"dotenv": "^10.0.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"ethereum-waffle": "^2.2.0",
"ethers": "^5.7.2",
"hardhat": "^2.12.5",
"hardhat-gas-reporter": "^1.0.2",
"hardhat-ignore-warnings": "^0.2.9",
"prettier": "^3.0.0",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.4.1",
"solhint-plugin-openzeppelin": "file:scripts/solhint-custom",
"solidity-coverage": "^0.7.22"
}
}