-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.13 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
{
"name": "@recordex/smartcontract",
"version": "0.1.6",
"description": "Recordex smart contract types package",
"main": "typechain-types/index.ts",
"types": "typechain-types/hardhat.d.ts",
"scripts": {
"build": "make build",
"prepare": "npm run build",
"test": "hardhat test",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"fix": "npm run lint && npm run format",
"node": "npx hardhat node --hostname 0.0.0.0",
"deploysepolia": "npx hardhat run scripts/deploy.ts --network sepolia",
"deploylocal": "npx hardhat run scripts/deploy.ts --network localhost"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.2",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-toolbox-viem": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-unused-imports": "^3.0.0",
"hardhat": "^2.18.1",
"husky": "^8.0.3",
"prettier": "3.0.3"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.0",
"eslint": "^8.53.0"
}
}