-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
80 lines (80 loc) · 2.37 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
{
"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": "eslint --cache --fix",
"*.{js,tsx,jsx,css,md}": [
"prettier --write",
"rustywind --write"
],
"package.json": "sort-package-json"
},
"dependencies": {
"@tailwindcss/typography": "0.5.10",
"@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.4.2",
"loglevel": "1.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "2.4.1",
"react-query": "4.0.0-beta.23",
"web3-react": "5.0.5"
},
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "3.0.5",
"@nomicfoundation/hardhat-verify": "2.0.1",
"@nomiclabs/hardhat-ethers": "2.2.3",
"@nomiclabs/hardhat-etherscan": "3.1.7",
"@nomiclabs/hardhat-waffle": "2.0.6",
"@openzeppelin/contracts": "4.9.3",
"@openzeppelin/contracts-upgradeable": "4.9.3",
"@openzeppelin/hardhat-upgrades": "1.28.0",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@typechain/ethers-v5": "11.1.2",
"@typechain/hardhat": "9.1.0",
"@types/mocha": "10.0.4",
"@types/react": "18.2.37",
"@types/react-dom": "18.2.15",
"@typescript-eslint/eslint-plugin": "6.12.0",
"@typescript-eslint/parser": "6.12.0",
"@vitejs/plugin-react-refresh": "1.3.6",
"autoprefixer": "10.4.16",
"chai": "4.3.10",
"dotenv": "16.3.1",
"eslint": "8.54.0",
"eslint-config-productsway": "1.3.1",
"ethereum-waffle": "4.0.10",
"ethers": "5.7.2",
"hardhat": "2.19.1",
"hardhat-gas-reporter": "1.0.9",
"husky": "8.0.3",
"lint-staged": "15.1.0",
"postcss": "8.4.31",
"prettier": "3.1.0",
"prettier-plugin-solidity": "1.2.0",
"rustywind": "0.20.0",
"solgraph": "1.0.2",
"solhint": "4.0.0",
"solidity-coverage": "0.8.5",
"sort-package-json": "2.6.0",
"tailwindcss": "3.3.5",
"typechain": "8.3.2",
"typescript": "5.3.2",
"vite": "5.0.5"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.12.0"
}
}