-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.74 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.74 KB
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
{
"name": "@o-p/web3-template",
"version": "1.0.0",
"author": {
"name": "Chris Chu"
},
"license": "UNLICENSED",
"private": true,
"engines": {
"node": ">=22.0.0",
"bun": ">=1.1.0"
},
"packageManager": "bun@1.1.38",
"scripts": {
"build": "bun run compile && bun run type:ethers",
"compile": "hardhat compile",
"console": "hardhat console",
"lint": "bun run lint:sol && bun run lint:ts && bun run prettier:check",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"lint:ts": "eslint --ignore-path ./.eslintignore --ext .js,.ts .",
"prettier:check": "prettier --check \"**/*.{js,json,md,sol,ts,yml}\"",
"prettier:write": "prettier --write \"**/*.{js,json,md,sol,ts,yml}\"",
"start": "DEBUG=app:* hardhat run",
"test": "DEBUG=app:*,test:* hardhat test --config hardhat.test.ts",
"test:ci": "REPORT_GAS=true hardhat test --config hardhat.test.ts",
"test:coverage": "hardhat coverage --config hardhat.test.ts --solcoverjs ./.solcover.js --temp artifacts --testfiles \"test/**/*.ts\"",
"abi": "hardhat export-abi",
"type:ethers": "hardhat typechain",
"type:wagmi": "wagmi generate"
},
"dependencies": {
"@openzeppelin/contracts": "^5.2.0",
"@openzeppelin/contracts-upgradeable": "^5.2.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-ignition": "^0.15.0",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.2",
"@nomicfoundation/ignition-core": "^0.15.6",
"@openzeppelin/hardhat-upgrades": "^3.5.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^5.0.1",
"@types/chai-as-promised": "^8.0.1",
"@types/debug": "^4.1.12",
"@types/mocha": ">=9.1.0",
"@types/node": ">=18.0.0",
"@typescript-eslint/eslint-plugin": "^8.25.0",
"@typescript-eslint/parser": "^8.25.0",
"@wagmi/cli": "^2.1.16",
"chai": "^4.3.7",
"colors": "^1.4.0",
"debug": "^4.3.7",
"dotenv": "^16.4.5",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.0.2",
"ethers": "^6.13.4",
"hardhat": "^2.22.16",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-gas-reporter": "^2.2.2",
"lodash": "^4.17.21",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.4.1",
"solhint": "^5.0.5",
"solhint-plugin-prettier": "^0.1.0",
"solidity-coverage": "^0.8.5",
"ts-node": ">=8.0.0",
"typechain": "^8.3.2",
"typescript": "^5.7.3",
"viem": "^2.7.6"
}
}