-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.43 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "polygon-zkevm-tokens-withdrawal",
"version": "1.0.0",
"private": false,
"description": "Polygon ZkEVM Tokens Withdrawals",
"license": "MIT",
"author": {
"name": "0xeabz",
"email": "[email protected]",
"url": "https://twitter.com/0xeabz"
},
"scripts": {
"build": "next build",
"dev": "next",
"format": "prettier --ignore-path .gitignore --ignore-path .prettierignore '**/*.{md,json,js,jsx,ts,tsx}' --write",
"prepare": "husky install",
"lint": "eslint --ignore-path .gitignore --ignore-path .eslintignore --cache --cache-location .husky/.eslintcache/ \"**/*.{js,jsx,ts,tsx}\" --max-warnings=0",
"start": "next start",
"tscheck": "tsc -p tsconfig.json --noEmit"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"pnpm lint --fix"
]
},
"dependencies": {
"@chakra-ui/avatar": "^2.3.0",
"@chakra-ui/button": "^2.1.0",
"@chakra-ui/card": "^2.2.0",
"@chakra-ui/hooks": "^2.2.1",
"@chakra-ui/input": "^2.1.1",
"@chakra-ui/layout": "^2.3.1",
"@chakra-ui/modal": "^2.3.1",
"@chakra-ui/next-js": "^2.1.5",
"@chakra-ui/provider": "^2.4.1",
"@chakra-ui/react": "^2.8.1",
"@chakra-ui/spinner": "^2.1.0",
"@chakra-ui/switch": "^2.1.1",
"@chakra-ui/system": "^2.6.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@rainbow-me/rainbowkit": "^1.1.3",
"encoding": "^0.1.13",
"ethers": "5.7.2",
"ffjavascript": "^0.2.62",
"framer-motion": "^10.16.4",
"lodash": "^4.17.21",
"lokijs": "^1.5.12",
"next": "^13.5.6",
"pino-pretty": "^10.2.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"viem": "^1.17.2",
"wagmi": "^1.4.5",
"zustand": "^4.4.4"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.5.6",
"@types/node": "^20.8.9",
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.14",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"eslint-config-next": "^13.5.6",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sort-keys-custom-order-fix": "^0.1.1",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
}
}