-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 996 Bytes
/
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
{
"name": "split3",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"chain": "hardhat node",
"deploy": "hardhat compile && hardhat run deploy.ts --network mumbai",
"test": "hardhat test"
},
"dependencies": {
"@mantine/core": "^4.2.10",
"@mantine/form": "^4.2.10",
"@mantine/hooks": "^4.2.10",
"@mantine/next": "^4.2.10",
"@rainbow-me/rainbowkit": "^0.3.4",
"ethers": "^5.6.9",
"next": "12.1.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"wagmi": "^0.4.12"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@types/node": "18.0.0",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"chai": "^4.3.6",
"dotenv": "^16.0.1",
"eslint": "8.18.0",
"eslint-config-next": "12.1.6",
"hardhat": "^2.9.9",
"typescript": "4.7.4"
}
}