-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.52 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
{
"name": "ebf-ui",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:development": "vite build --mode development",
"build:production": "vite build --mode production",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"deploy:dev": "yarn build:development && firebase deploy -P development",
"deploy:prod": "yarn build:production && firebase deploy -P production"
},
"dependencies": {
"@ant-design/icons": "^5.4.0",
"@ethereum-attestation-service/eas-sdk": "^2.3.0",
"@heroicons/react": "^2.1.4",
"@privy-io/react-auth": "^1.74.0",
"@reduxjs/toolkit": "^2.2.6",
"antd": "^5.19.2",
"axios": "^1.7.3",
"ethers": "^6.13.1",
"firebase": "^10.12.3",
"lodash": "^4.17.21",
"markdown-to-jsx": "^7.4.7",
"moment": "^2.30.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.1.2",
"react-router-dom": "^6.23.1",
"react-toastify": "^10.0.5",
"redux": "^5.0.1",
"viem": "^2.15.1",
"web3": "^4.10.0"
},
"devDependencies": {
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.4",
"vite": "^5.2.0"
}
}