-
Notifications
You must be signed in to change notification settings - Fork 104
/
package.json
116 lines (116 loc) · 4.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
{
"name": "@sushiswap/miso",
"version": "1.0.0-canary.48",
"files": [
"artifacts",
"contracts",
"deployments",
"deploy",
"exports",
"typechain"
],
"description": "MISO launch pad",
"keywords": [
"hardhat"
],
"homepage": "https://github.com/sushiswap/miso",
"bugs": {
"url": "https://github.com/sushiswap/miso/issues",
"email": "[email protected]"
},
"license": "GPL-3.0",
"author": "Chef Gonpachi & Kusatoshi <[email protected]>",
"contributors": [
"Matthew Lilley <[email protected]>",
"Sarang Parikh"
],
"repository": {
"type": "git",
"url": "https://github.com/sushiswap/miso.git"
},
"scripts": {
"build": "cross-env TS_NODE_TRANSPILE_ONLY=1 hardhat compile",
"console": "hardhat console",
"mainnet:deploy": "hardhat --network mainnet deploy",
"mainnet:verify": "hardhat --network mainnet etherscan-verify --license GPL-3.0 --force-license",
"mainnet:export": "hardhat --network mainnet export",
"deploy:testnet": "yarn ropsten:deploy && yarn rinkeby:deploy && yarn goerli:deploy && yarn kovan:deploy",
"ropsten:deploy": "hardhat --network ropsten deploy",
"ropsten:verify": "hardhat --network ropsten etherscan-verify --license GPL-3.0 --force-license",
"ropsten:export": "hardhat --network ropsten export --export exports/ropsten.json",
"rinkeby:deploy": "hardhat --network rinkeby deploy",
"rinkeby:verify": "hardhat --network rinkeby etherscan-verify --license GPL-3.0 --force-license",
"rinkeby:export": "hardhat --network rinkeby export --export exports/rinkeby.json",
"goerli:deploy": "hardhat --network goerli deploy",
"goerli:verify": "hardhat --network goerli etherscan-verify --license GPL-3.0 --force-license",
"goerli:export": "hardhat --network goerli export --export exports/goerli.json",
"kovan:deploy": "hardhat --network kovan deploy",
"kovan:export": "hardhat --network kovan export --export exports/kovan.json",
"kovan:verify": "hardhat --network kovan etherscan-verify --license GPL-3.0 --force-license",
"test": "cross-env TS_NODE_TRANSPILE_ONLY=1 hardhat test",
"test:coverage": "cross-env NODE_OPTIONS=\"--max-old-space-size=4096\" hardhat coverage",
"test:gas": "cross-env REPORT_GAS=true yarn test",
"export:all": "hardhat export --export-all exports/all.json",
"release:canary": "yarn version:canary && yarn publish:canary",
"version:canary": "yarn version --prerelease --preid=canary",
"publish:canary": "yarn publish --access public --tag canary"
},
"lint-staged": {
"*.ts": [
"eslint --cache --fix",
"prettier --write"
],
"*.sol": [
"solhint -c .solhint.json",
"prettier --write",
"yarn test"
],
"*.md": "prettier --write"
},
"devDependencies": {
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.0.0",
"@nomiclabs/hardhat-ethers": "yarn:hardhat-deploy-ethers",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "3.0.2",
"@sushiswap/bentobox": "^0.4.0",
"@sushiswap/contracts": "^1.0.0-canary.0",
"@sushiswap/core": "^2.0.0-canary.1",
"@sushiswap/core-sdk": "1.0.0-canary.89",
"@tenderly/hardhat-tenderly": "^1.0.13",
"@typechain/ethers-v5": "^7.2.0",
"@typechain/hardhat": "^3.1.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"eslint": "^8.6.0",
"ethereum-waffle": "^3.4.0",
"ethereumjs-util": "^7.1.3",
"ethers": "^5.5.3",
"hardhat": "^2.8.2",
"hardhat-dependency-compiler": "^1.1.2",
"hardhat-deploy": "^0.9.24",
"hardhat-deploy-ethers": "^0.3.0-beta.13",
"hardhat-gas-reporter": "^1.0.6",
"hardhat-log-remover": "^2.0.2",
"hardhat-preprocessor": "^0.1.4",
"hardhat-spdx-license-identifier": "^2.0.3",
"hardhat-watcher": "^2.1.1",
"husky": "^7.0.4",
"lint-staged": "^12.1.7",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solidity-coverage": "^0.7.17",
"ts-generator": "^0.1.1",
"ts-node": "^10.4.0",
"typechain": "^5.2.0",
"typescript": "^4.5.4"
}
}