-
-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
52 lines (52 loc) · 1.19 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
{
"name": "@create-web3/frontend",
"version": "0.1.0",
"description": "",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"export": "next export",
"test": "npm run lint && npm run tsc"
},
"dependencies": {
"@geist-ui/core": "^2.3.8",
"@rainbow-me/rainbowkit": "^1.3.3",
"essential-eth": "^0.6.0",
"jotai": "^1.8.0",
"next": "^14.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-github-corner": "^2.5.0",
"viem": "^1.21.4",
"wagmi": "^1.4.13",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.11.14",
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.7",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"husky": "^8.0.1",
"postcss": "^8.4.14",
"prettier": "^3.2.4",
"prettier-plugin-organize-imports": "^3.2.4",
"tailwindcss": "^3.1.5",
"typescript": "^5.3.3"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"singleQuote": true
},
"lint-staged": {
"*": [
"prettier -u --write"
]
}
}