generated from jellydn/dapp-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
74 lines (74 loc) · 2.16 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
{
"name": "dapp-token-ico",
"version": "0.1.0",
"scripts": {
"build": "npx hardhat compile --network localhost && tsc && vite build",
"dev": "vite",
"lint:sol": "npx solhint 'contracts/**/*.sol'",
"prepare": "husky install",
"serve": "vite preview",
"test": "mocha --exit --recursive"
},
"lint-staged": {
"*.js": "biome lint --fix",
"*.{js,tsx,jsx,css,md}": [
"rustywind --write"
],
"package.json": "sort-package-json"
},
"dependencies": {
"@tailwindcss/typography": "0.5.15",
"@web3-react/core": "6.1.9",
"@web3-react/injected-connector": "6.0.7",
"@web3-react/network-connector": "6.2.9",
"@web3-react/walletconnect-connector": "6.2.13",
"daisyui": "4.12.13",
"loglevel": "1.9.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hot-toast": "2.4.1",
"react-query": "4.0.0-beta.23",
"web3-react": "5.0.5"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@nomicfoundation/hardhat-ethers": "3.0.8",
"@nomicfoundation/hardhat-verify": "2.0.11",
"@nomiclabs/hardhat-ethers": "2.2.3",
"@nomiclabs/hardhat-etherscan": "3.1.8",
"@nomiclabs/hardhat-waffle": "2.0.6",
"@openzeppelin/contracts": "4.9.6",
"@openzeppelin/contracts-upgradeable": "4.9.6",
"@openzeppelin/hardhat-upgrades": "3.5.0",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@typechain/ethers-v5": "11.1.2",
"@typechain/hardhat": "9.1.0",
"@types/mocha": "10.0.9",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@vitejs/plugin-react-refresh": "1.3.6",
"autoprefixer": "10.4.20",
"chai": "5.1.2",
"dotenv": "16.4.5",
"ethereum-waffle": "4.0.10",
"ethers": "5.7.2",
"hardhat": "2.22.14",
"hardhat-gas-reporter": "2.2.1",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"postcss": "8.4.47",
"rustywind": "0.22.0",
"solgraph": "1.0.2",
"solhint": "5.0.3",
"solidity-coverage": "0.8.13",
"sort-package-json": "2.10.1",
"tailwindcss": "3.4.14",
"typechain": "8.3.2",
"typescript": "5.6.3",
"vite": "5.4.10"
},
"packageManager": "yarn@1.22.22",
"engines": {
"node": ">=18.12.0"
}
}