generated from Borodutch/smart-contract-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 3.05 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
{
"name": "@big-whale-labs/lunchbreak-seats-contract",
"version": "0.0.18",
"description": "Lunchbreak seats contract",
"repository": {
"type": "git",
"url": "git+https://github.com/BigWhaleLabs/lunchbreak-seats-contract"
},
"license": "MIT",
"np": {
"2fa": false,
"tests": false,
"cleanup": false,
"yarn": false
},
"files": [
"dist/typechain/**/*"
],
"main": "dist/typechain/index.js",
"types": "dist/typechain/index.d.ts",
"scripts": {
"build": "yarn clean && npx hardhat compile",
"clean": "npx hardhat clean",
"test": "npx hardhat test",
"deploy-mainnet": "npx hardhat run --network mainnet scripts/deploy.ts",
"deploy-testnet": "npx hardhat run --network testnet scripts/deploy.ts",
"deploy-registry-mainnet": "npx hardhat run --network mainnet scripts/deploy-registry.ts",
"deploy-registry-testnet": "npx hardhat run --network testnet scripts/deploy-registry.ts",
"deploy-scout-pass-mainnet": "npx hardhat run --network mainnet scripts/deploy-scout-pass.ts",
"upgrade-mainnet": "npx hardhat run --network mainnet scripts/upgrade.ts",
"upgrade-testnet": "npx hardhat run --network testnet scripts/upgrade.ts",
"upgrade-scout-pass-mainnet": "npx hardhat run --network mainnet scripts/upgrade-scout-pass.ts",
"eth-lint": "yarn solhint 'contracts/**/*.sol'",
"lint": "prettier --check . && eslint --max-warnings 0 --ext ts scripts test && yarn eth-lint",
"release": "yarn prepublishOnly && np",
"prepublishOnly": "yarn build && yarn tsc --skipLibCheck"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.3",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.5",
"@openzeppelin/contracts": "^5.0.2",
"@openzeppelin/hardhat-upgrades": "^3.1.0",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.5",
"@types/prompt": "^1",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"chai": "^4.3.10",
"dotenv": "^16.4.5",
"envalid": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"ethers": "^6.11.1",
"hardhat": "^2.22.2",
"hardhat-gas-reporter": "^2.0.2",
"np": "^10.0.2",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^4.5.2",
"solidity-coverage": "^0.8.11",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.4.3"
},
"packageManager": "[email protected]",
"dependencies": {
"@openzeppelin/contracts-upgradeable": "^5.0.2",
"prompt": "^1.3.0"
}
}