-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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
{
"name": "dapp-rainbow-starter",
"version": "1.0.0",
"private": true,
"license":"MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format:check": "npx prettier --check ./src",
"format:fix": "npx prettier --write ./src",
"compile-contract-types": "typechain --target ethers-v5 --out-dir \"src/contracts/types\" \"src/contracts/*.json\""
},
"dependencies": {
"@headlessui/react": "1.7.18",
"@heroicons/react": "2.1.1",
"@popperjs/core": "2.11.8",
"@rainbow-me/rainbowkit": "^0.8.1",
"ethers": "^5.7.2",
"next": "^13.1.1",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-device-detect": "2.2.3",
"react-dom": "18.2.0",
"wagmi": "^0.10.4"
},
"devDependencies": {
"@tailwindcss/typography": "0.5.10",
"@typechain/ethers-v5": "^10.2.0",
"@types/node": "20.11.10",
"@types/react": "18.2.48",
"autoprefixer": "^10.4.17",
"eslint": "8.56.0",
"eslint-config-next": "14.1.0",
"postcss": "8.4.33",
"prettier": "3.2.4",
"prettier-plugin-tailwindcss": "0.5.11",
"sass": "1.70.0",
"tailwindcss": "3.4.1",
"typechain": "^8.1.1",
"typescript": "^4.9.4"
}
}