-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.51 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.51 KB
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
{
"name": "efp-app",
"version": "1.0.0",
"description": "Ethereum Follow Protocol App",
"repository": "github:ethereumfollowprotocol/app",
"type": "module",
"scripts": {
"clean": "/bin/bash ./scripts/clean.sh",
"build": "NODE_OPTIONS='--no-warnings' NODE_ENV='production' next build",
"dev": "next dev --port 3443",
"fix": "bun lint && bun format",
"lint": "eslint .",
"format": "prettier --write .",
"start": "next start",
"typecheck": "tsc --project tsconfig.json --noEmit",
"preinstall": "npm_config_yes=true npm exec --no-package-lock=true only-allow@latest bun",
"check": "bun lint && bun format && bun typecheck && bun run build"
},
"dependencies": {
"@next/third-parties": "15.1.6",
"@safe-global/safe-apps-provider": "^0.18.5",
"@safe-global/safe-apps-sdk": "^9.1.0",
"@rainbow-me/rainbowkit": "^2.2.4",
"@react-spring/web": "^9.7.5",
"@sentry/nextjs": "^8.55.0",
"@sparticuz/chromium": "^138.0.2",
"@tailwindcss/postcss": "^4.1.4",
"@tanstack/query-async-storage-persister": "^5.74.4",
"@tanstack/react-query": "^5.74.4",
"@tanstack/react-query-next-experimental": "^5.74.4",
"@tanstack/react-query-persist-client": "^5.74.4",
"@thirdweb-dev/wagmi-adapter": "^0.2.58",
"@types/puppeteer": "^5.4.7",
"@types/web-push": "^3.6.4",
"@typescript-eslint/eslint-plugin": "^8.31.0",
"@typescript-eslint/parser": "^8.31.0",
"@uidotdev/usehooks": "^2.4.1",
"@use-gesture/react": "^10.3.1",
"@vercel/kv": "^3.0.0",
"caniuse-lite": "^1.0.30001687",
"clsx": "^2.1.0",
"ethereum-identity-kit": "^0.2.74",
"i18next": "^23.11.5",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-http-backend": "^2.5.2",
"ioredis": "^5.6.0",
"next": "15.5.9",
"next-themes": "^0.3.0",
"puppeteer": "^24.21.0",
"puppeteer-core": "^24.22.0",
"react": "19.2.1",
"react-dom": "19.2.1",
"react-i18next": "^14.1.3",
"server-only": "^0.0.1",
"sonner": "^1.7.4",
"tailwind-merge": "^2.6.0",
"thirdweb": "^5.95.2",
"update-browserslist-db": "^1.1.3",
"valibot": "^0.27.1",
"viem": "^2.27.3",
"wagmi": "^2.14.16",
"web-push": "^3.6.7"
},
"devDependencies": {
"@eslint/js": "^9.25.1",
"@next/bundle-analyzer": "15.1.6",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/typography": "^0.5.16",
"@tanstack/react-query-devtools": "^5.74.4",
"@total-typescript/ts-reset": "^0.5.1",
"@types/bun": "^1.2.10",
"@types/node": "^20.17.30",
"@types/react": "19.2.1",
"@types/react-dom": "19.2.1",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"autoprefixer": "^10.4.21",
"bufferutil": "^4.0.9",
"encoding": "^0.1.13",
"eslint": "^9.25.1",
"eslint-config-next": "^15.3.1",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-react": "^7.37.5",
"globals": "^15.15.0",
"lokijs": "^1.5.12",
"pino-pretty": "^10.3.1",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"sharp": "^0.33.5",
"tailwindcss": "^4.1.4",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-themer": "^4.1.1",
"typed-query-selector": "^2.12.0",
"typescript": "5.7.3",
"typescript-eslint": "^8.31.0",
"utf-8-validate": "^6.0.5"
},
"browser": {
"crypto": false,
"stream": false
},
"bugs": "github:ethereumfollowprotocol/app/issues",
"sideEffects": false
}