-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.48 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
{
"name": "fairsharing-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env APP_ENV=Local next dev -p 3001",
"build:dev": "cross-env APP_ENV=DEV next build",
"build:prod": "cross-env APP_ENV=Production next build",
"start": "next start",
"format": "run-s prettier lint:fix tsc",
"prettier": "prettier --write 'src/**/*.{ts,tsx}'",
"lint:fix": "next lint -d src --no-cache --fix",
"tsc": "tsc --noEmit"
},
"dependencies": {
"@apollo/client": "^3.8.3",
"@aws-sdk/client-s3": "^3.600.0",
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@ethereum-attestation-service/eas-sdk": "1.1.0-beta.3",
"@hookform/resolvers": "^3.3.1",
"@lxdao/img3": "^1.1.0",
"@lxdao/uploader3": "^1.2.2",
"@lxdao/uploader3-connector": "^1.0.1",
"@mui/icons-material": "^5.14.11",
"@mui/lab": "^5.0.0-alpha.146",
"@mui/material": "^5.14.3",
"@mui/x-data-grid": "^6.13.0",
"@mui/x-date-pickers": "^6.18.0",
"@rainbow-me/rainbowkit": "^2.0.1",
"@safe-global/safe-apps-provider": "^0.18.2",
"@safe-global/safe-apps-react-sdk": "^4.7.1",
"@safe-global/safe-apps-sdk": "^9.0.0",
"@safe-global/safe-react-components": "^2.0.6",
"@tanstack/react-query": "^5.25.0",
"@types/node": "20.4.8",
"@types/react": "18.2.18",
"@types/react-dom": "18.2.7",
"@vercel/analytics": "^1.1.1",
"axios": "^1.4.0",
"cookies-next": "^2.1.2",
"date-fns": "^2.30.0",
"eslint": "8.46.0",
"eslint-config-next": "13.4.12",
"ethers": "^6.7.1",
"export-to-csv": "^1.2.4",
"graphql": "^16.8.0",
"lodash.merge": "^4.6.2",
"next": "13.4.12",
"nextjs-toploader": "^1.4.2",
"react": "18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.47.0",
"react-quill": "^2.0.0",
"swr": "^2.2.2",
"typescript": "5.1.6",
"uuid": "^10.0.0",
"valtio": "^1.11.1",
"viem": "2",
"wagmi": "^2.5.7",
"web3-validator": "^2.0.4",
"zod": "^3.22.3"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"cross-env": "^7.0.3",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.1"
},
"packageManager": "yarn@1.22.19"
}