-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.56 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
84
{
"name": "dapp-token-ico",
"version": "0.0.1",
"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.9",
"@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": "2.51.6",
"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": {
"@nomiclabs/hardhat-ethers": "2.2.3",
"@nomiclabs/hardhat-etherscan": "3.1.7",
"@nomiclabs/hardhat-waffle": "2.0.5",
"@openzeppelin/contracts": "4.8.3",
"@openzeppelin/contracts-upgradeable": "4.8.3",
"@openzeppelin/hardhat-upgrades": "1.25.3",
"@trivago/prettier-plugin-sort-imports": "4.1.1",
"@typechain/ethers-v5": "10.2.1",
"@typechain/hardhat": "6.1.6",
"@types/mocha": "10.0.1",
"@types/react": "18.2.6",
"@types/react-dom": "18.2.4",
"@typescript-eslint/eslint-plugin": "5.59.5",
"@typescript-eslint/parser": "5.59.5",
"@vitejs/plugin-react-refresh": "1.3.6",
"autoprefixer": "10.4.14",
"chai": "4.3.7",
"dotenv": "16.0.3",
"eslint": "8.40.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"ethereum-waffle": "4.0.10",
"ethers": "5.7.2",
"hardhat": "2.14.0",
"hardhat-gas-reporter": "1.0.9",
"husky": "8.0.3",
"lint-staged": "13.2.2",
"postcss": "8.4.23",
"prettier": "2.8.8",
"prettier-plugin-solidity": "1.1.3",
"rustywind": "0.16.0",
"solgraph": "1.0.2",
"solhint": "3.4.1",
"solidity-coverage": "0.8.2",
"sort-package-json": "2.4.1",
"tailwindcss": "3.3.2",
"typechain": "8.1.1",
"typescript": "5.0.4",
"vite": "4.3.5"
},
"engines": {
"node": ">=12.0.0 <13.0.0-0||>=14.0.0 <15.0.0-0||>=16.0.0 <17.0.0-0||>=18.12.0"
}
}