This repository has been archived by the owner on Apr 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
146 lines (146 loc) · 5.34 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "@shunkakinoki/contracts",
"version": "1.51.0",
"private": true,
"homepage": "https://github.com/shunkakinoki/contracts",
"bugs": {
"url": "https://github.com/shunkakinoki/contracts/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/shunkakinoki/contracts.git"
},
"license": "MIT",
"author": "Shun Kakinoki",
"files": [
"contracts",
"deployments",
"src"
],
"workspaces": {
"packages": [
"contracts/*",
"packages/*"
]
},
"scripts": {
"build": "yarn run clean && yarn run build:hh && yarn run build:ts",
"build:hh": "yarn run compile",
"build:ts": "tsc",
"check": "scripty",
"clean": "yarn run clean:sol",
"clean:sol": "hardhat clean",
"cmd:eslint": "scripty",
"cmd:prettier": "scripty",
"compile": "hardhat compile --force",
"depcheck": "scripty",
"depcheck:exec": "scripty",
"depcheck:root": "scripty",
"deploy": "yarn run deploy:hardhat",
"deploy:arbitrum": "yarn run deploy:cmd --network arbitrum",
"deploy:arbitrumRinkeby": "yarn run deploy:cmd --network arbitrumRinkeby",
"deploy:avalanche": "yarn run deploy:cmd --network avalanche",
"deploy:cmd": "hardhat deploy --write true",
"deploy:fuji": "yarn run deploy:cmd --network fuji",
"deploy:hardhat": "yarn run deploy:cmd --network hardhat",
"deploy:harmony": "yarn run deploy:cmd --network harmony",
"deploy:harmony-testnet": "yarn run deploy:cmd --network harmony-testnet",
"deploy:kovan": "yarn run deploy:cmd --network kovan",
"deploy:local": "yarn run deploy:cmd --network localhost",
"deploy:munbai": "yarn run deploy:cmd --network munbai",
"deploy:polygon": "yarn run deploy:cmd --network polygon",
"deploy:rinkeby": "yarn run deploy:cmd --network rinkeby",
"deploy:ropsten": "yarn run deploy:cmd --network ropsten",
"deploy:xdai": "yarn run deploy:cmd --network xdai",
"doppler:setup": "doppler setup --no-interactive",
"env:pull": "doppler secrets download --no-file --format env > .env",
"export:all": "hardhat export --export-all exports/deployments.json",
"export:rinkeby": "hardhat --network rinkeby export --export exports/rinkeby.json",
"export:ropsten": "hardhat --network ropsten export --export exports/ropsten.json",
"fix": "scripty",
"fix:eslint": "scripty",
"fix:prettier": "scripty",
"fix:sort-package-json": "echo",
"foundry:nightly": "foundryup -v nightly",
"postinstall": "yarn workspace @shunkakinoki/ds-test build && yarn workspace forge-std build",
"lint": "scripty && yarn run lint:solhint",
"lint:eslint": "scripty",
"lint:npm-package-json": "echo npm-package-json",
"lint:prettier": "scripty",
"lint:solhint": "solhint 'contracts/**/*.sol'",
"ncu": "scripty",
"ncu:check": "scripty",
"ncu:upgrade": "npx npm-check-updates -u --packageFile 'contracts/**/package.json'",
"node": "hardhat node --hostname 0.0.0.0 --show-accounts",
"plop": "plop",
"prepare": "scripty",
"prepublishOnly": "scripty",
"prettier:fix": "scripty",
"prettier:lint": "scripty",
"postpublish": "scripty",
"release": "scripty",
"release:multi-semantic-release": "scripty",
"release:semantic-release": "scripty",
"task:accounts": "hardhat accounts",
"task:deploy:Greeter": "hardhat deploy:Greeter",
"test": "hardhat test",
"test:coverate": "hardhat coverate",
"test:gas": "REPORT_GAS=true hardhat test",
"verify": "yarn run verify:mainnet",
"verify:cmd": "hardhat etherscan-verify --solc-input",
"verify:mainnet": "yarn run verify:cmd --network mainnet",
"verify:rinkeby": "yarn run verify:cmd --network rinkeby",
"verify:ropsten": "yarn run verify:cmd --network ropsten",
"watch": "yarn run watch:compile",
"watch:compile": "hardhat watch compile"
},
"dependencies": {
"@ethersproject/providers": "^5.6.5",
"@nomiclabs/eslint-plugin-hardhat-internal-rules": "^1.0.0",
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@openzeppelin/hardhat-upgrades": "^1.17.0",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^6.0.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.31",
"ethers": "^5.6.5",
"hardhat": "^2.9.3",
"hardhat-abi-exporter": "^2.9.0",
"hardhat-deploy": "^0.11.4",
"hardhat-gas-reporter": "^1.0.8",
"hardhat-preprocessor": "^0.1.4",
"hardhat-spdx-license-identifier": "^2.0.3",
"hardhat-watcher": "^2.3.0",
"solc": "^0.8.13",
"solidity-coverage": "^0.7.21",
"ts-node": "^10.7.0"
},
"devDependencies": {
"@float-capital/solidity-coverage": "^0.7.17",
"@shunkakinoki/commitlint": "^1.0.9",
"@shunkakinoki/depcheck": "^1.0.2",
"@shunkakinoki/dev": "^1.2.11",
"@shunkakinoki/eslint-config": "^1.1.66",
"@shunkakinoki/husky": "^1.0.6",
"@shunkakinoki/lint-staged": "^1.1.20",
"@shunkakinoki/npm-check-updates": "^1.0.8",
"@shunkakinoki/prettier": "^1.0.6",
"@shunkakinoki/semantic-release": "^1.2.13",
"@shunkakinoki/stylelint": "^1.0.7",
"@shunkakinoki/tsconfig": "^1.1.6",
"dotenv": "^16.0.0",
"plop": "^3.1.0",
"solhint": "^3.3.7",
"typechain": "^8.0.0",
"typescript": "^4.6.4"
},
"scripty": {
"logLevel": "warn",
"modules": [
"@shunkakinoki/dev"
],
"parallel": true
}
}