forked from kaymomin/Crowdfunding-dApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.46 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
{
"name": "my-project",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"prettier": "prettier --config ./.prettierrc --write \"**/*.{js,json,md,sol,ts,yml}\"",
"prettier:check": "prettier --check --config ./.prettierrc \"**/*.{js,json,md,sol,ts,yml}\"",
"typechain": "typechain --target ethers-v5 --out-dir src/contract-types './src/abis/**/*.json'"
},
"dependencies": {
"@ankr.com/ankr.js": "^0.1.6",
"@rainbow-me/rainbowkit": "^0.4.1",
"buffer": "^6.0.3",
"dotenv": "^16.0.1",
"ethers": "^5.6.9",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-icons": "^4.4.0",
"wagmi": "^0.5.11"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.1.0",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^1.3.0",
"autoprefixer": "^10.4.7",
"chai": "^4.3.6",
"ethereum-waffle": "^3.4.4",
"hardhat": "^2.10.1",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-dev.23",
"tailwindcss": "^3.1.4",
"typechain": "^8.1.0",
"typescript": "^4.6.3",
"vite": "^2.9.9"
}
}