-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.77 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
{
"name": "dapp-learning-app",
"version": "0.1.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@apollo/client": "^3.9.5",
"@ethersproject/providers": "^5.7.2",
"@heroicons/react": "^2.1.1",
"@lifi/sdk": "^2.5.0",
"@lifi/widget": "^2.10.1",
"@metamask/jazzicon": "^2.0.0",
"@rainbow-me/rainbowkit": "^2.0.0",
"@tanstack/react-query": "^5.22.2",
"@wagmi/core": "^2.6.5",
"circomlibjs": "^0.1.7",
"comlink": "^4.4.1",
"ethers": "^6.11.1",
"localforage": "^1.10.0",
"lodash": "^4.17.21",
"merkletreejs": "^0.3.11",
"moment": "^2.30.1",
"next": "14.1.0",
"next-international": "^1.2.4",
"qs": "^6.11.2",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.50.1",
"react-use": "^17.5.0",
"snarkjs": "^0.7.3",
"swr": "^2.2.5",
"viem": "~2.7.11",
"wagmi": "^2.5.7"
},
"devDependencies": {
"@types/circomlibjs": "^0.1.6",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.19",
"@types/qs": "^6.9.12",
"@types/react": "^18.2.57",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^18.2.19",
"@types/snarkjs": "^0.7.8",
"autoprefixer": "^10.4.17",
"daisyui": "^4.7.2",
"encoding": "^0.1.13",
"eslint": "^8.56.0",
"eslint-config-next": "14.1.0",
"graphql": "^16.8.1",
"husky": "^9.0.11",
"pino-pretty": "^10.3.1",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint --cache --fix",
"prettier --write"
]
}
}