-
Notifications
You must be signed in to change notification settings - Fork 122
/
package.json
101 lines (101 loc) · 3.42 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
{
"name": "@shoyunft/contracts",
"version": "1.1.2",
"description": "Shoyu NFT platform contracts",
"keywords": [
"solidity",
"shoyu",
"nft"
],
"homepage": "https://github.com/sushiswap/shoyu#readme",
"bugs": {
"url": "https://github.com/sushiswap/shoyu/issues",
"email": "bugs@sushi.com"
},
"license": "MIT",
"author": "LevX <team@levx.io>",
"files": [
"abis",
"contracts",
"deployments",
"exports",
"typechain"
],
"scripts": {
"build": "rimraf abis artifacts cache coverage typechain && hardhat compile",
"console": "hardhat console",
"hardhat:deploy": "hardhat --network hardhat deploy",
"mainnet:deploy": "hardhat --network mainnet deploy",
"mainnet:verify": "hardhat --network mainnet etherscan-verify --solc-input --license MIT",
"mainnet:export": "hardhat --network mainnet export",
"testnet:deploy": "yarn rinkeby:deploy && yarn kovan:deploy",
"testnet:verify": "yarn rinkeby:verify && yarn kovan:verify",
"rinkeby:deploy": "hardhat --network rinkeby deploy",
"rinkeby:verify": "hardhat --network rinkeby etherscan-verify --solc-input --license MIT",
"rinkeby:export": "hardhat --network rinkeby export --export exports/rinkeby.json",
"kovan:deploy": "hardhat --network kovan deploy",
"kovan:export": "hardhat --network kovan export --export exports/kovan.json",
"kovan:verify": "hardhat --network kovan etherscan-verify --solc-input --license MIT",
"test": "cross-env TS_NODE_TRANSPILE_ONLY=1 hardhat test",
"test:coverage": "cross-env NODE_OPTIONS=\"--max-old-space-size=4096\" hardhat coverage --testfiles \"test/*.test.ts\"",
"test:gas": "cross-env REPORT_GAS=true yarn test",
"prepublishOnly": "yarn build",
"pretty": "prettier --write contracts/**/*.sol"
},
"lint-staged": {
"*.ts": [
"eslint --cache --fix",
"prettier --write"
],
"*.sol": [
"solhint -c .solhint.json",
"prettier --write",
"yarn test"
],
"*.md": "prettier --write"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-etherscan": "^2.1.0",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@tenderly/hardhat-tenderly": "^1.0.0",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.3.0",
"@types/chai": "^4.2.00",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.0",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"chai": "^4.2.0",
"cross-env": "^7.0.0",
"dotenv": "^8.2.0",
"eslint": "^7.20.0",
"ethereum-waffle": "^3.2.0",
"ethers": "^5.0.0",
"hardhat": "^2.3.0",
"hardhat-abi-exporter": "^2.2.1",
"hardhat-deploy": "^0.7.9",
"hardhat-gas-reporter": "^1.0.0",
"hardhat-log-remover": "^2.0.0",
"hardhat-preprocessor": "^0.1.0",
"hardhat-spdx-license-identifier": "^2.0.0",
"hardhat-watcher": "^2.0.0",
"husky": "^5.0.9",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.3",
"readline-sync": "^1.4.10",
"rimraf": "^3.0.2",
"solidity-coverage": "^0.7.0",
"ts-generator": "^0.1.0",
"ts-node": "^9.1.0",
"typechain": "^5.1.2",
"typescript": "^4.1.0"
},
"dependencies": {
"@openzeppelin/contracts": "^4.1.0"
}
}