-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
125 lines (125 loc) · 3.76 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "zk-block",
"version": "0.1.1",
"scripts": {
"dev": "env-cmd -f env/.env.local next dev",
"local": "env-cmd -f env/.env.local next dev",
"build": "next build ",
"start": "env-cmd -f env/.env.local next start",
"build-stats": "cross-env ANALYZE=true npm run build",
"export": "next export",
"build:dev": "env-cmd -f env/.env.development next build",
"export:dev": "env-cmd -f env/.env.development next export",
"build:prod": "env-cmd -f env/.env.production next build",
"export:prod": "env-cmd -f env/.env.production next export",
"deploy": " firebase deploy --only hosting:zk-block",
"clean": "rimraf .next out",
"lint": "next lint",
"build-types": "tsc --noEmit --pretty"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.0",
"@chakra-ui/react": "^2.0.0",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@openzeppelin/merkle-tree": "^1.0.6",
"@rainbow-me/rainbowkit": "^1.2.0",
"@types/react-json-editor-ajrm": "^2.5.3",
"@uniswap/sdk-core": "^4.0.9",
"@uniswap/v3-sdk": "^3.10.0",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/walletconnect-connector": "^6.2.8",
"axios": "^0.27.2",
"axios-hooks": "^3.1.5",
"bls-signatures": "^1.0.16",
"crypto-browserify": "^3.12.0",
"ethers": "^5.5.3",
"ethers-multicall": "^0.2.3",
"ffjavascript": "^0.2.46",
"firebase": "^9.6.6",
"framer-motion": "^6",
"http": "^0.0.1-security",
"http-browserify": "^1.7.0",
"https-browserify": "^1.0.0",
"js-cookie": "^3.0.1",
"jsbi": "^3.2.5",
"next": "^14.0.3",
"next-compose-plugins": "^2.2.1",
"next-seo": "^4.28.1",
"next-transpile-modules": "^9.0.0",
"querystring": "^0.2.1",
"react": "^18.2.0",
"react-confetti": "^6.1.0",
"react-dom": "^18.2.0",
"react-icons": "^5.1.0",
"react-json-editor-ajrm": "^2.5.14",
"react-notifications": "^1.7.4",
"react-twitter-embed": "^4.0.4",
"snarkjs": "^0.4.16",
"stream": "^0.0.2",
"styled-jsx-plugin-postcss": "^4.0.1",
"viem": "^1.19.3",
"wagmi": "^1.4.7",
"web3": "^1.7.0",
"web3modal": "^1.9.5",
"zustand": "^4.3.8"
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.16.11",
"@next/bundle-analyzer": "^12.0.7",
"@truffle/hdwallet-provider": "^2.0.0",
"@types/js-cookie": "^3.0.1",
"@types/node": "^17.0.4",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"autoprefixer": "^10.4.0",
"cross-env": "^7.0.3",
"cssnano": "^5.0.14",
"env-cmd": "^10.1.0",
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-next": "^14.0.3",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.4",
"node-fetch": "^3.1.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"truffle": "^5.4.27",
"typescript": "^5.0.4"
},
"resolutions": {
"@types/react": "^18.2.37",
"@types/react-dom": "^18.0.0"
},
"engines": {
"node": "21.2.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"license": "MIT"
}