-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.44 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.44 KB
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
{
"name": "next-eth",
"description": "NextJs and Hardhat setup to kickstart your decentralized application.",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "playwright test",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"typecheck": "tsc --noEmit",
"prepare": "husky install",
"prettier:check": "prettier --check \"./src/**/*.{ts,tsx}\""
},
"dependencies": {
"@rainbow-me/rainbowkit": "0.8.0",
"ethers": "5.7.2",
"next": "13.0.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "2.4.0",
"wagmi": "0.8.6"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "2.2.1",
"@nomiclabs/hardhat-etherscan": "3.1.2",
"@nomiclabs/hardhat-waffle": "2.0.3",
"@playwright/test": "1.28.1",
"@types/mocha": "10.0.1",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@typescript-eslint/eslint-plugin": "5.45.0",
"autoprefixer": "10.4.13",
"dotenv": "16.0.3",
"eslint": "8.28.0",
"eslint-config-next": "13.0.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "8.0.0",
"eslint-plugin-unused-imports": "2.0.0",
"ethereum-waffle": "3.4.4",
"hardhat": "2.12.2",
"hardhat-gas-reporter": "1.0.9",
"husky": "8.0.2",
"postcss": "8.4.19",
"tailwindcss": "3.2.4",
"ts-node": "10.9.1",
"typescript": "4.9.3"
}
}