-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.94 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.94 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
{
"name": "grails-market",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint .",
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"checks": "bun run format && bun run lint && bun run typecheck",
"postinstall": "node -e \"process.env.VERCEL_ENV === 'production' ? require('child_process').execSync('node scripts/postinstall.mjs', {stdio: 'inherit'}) : console.log('Skipping postinstall')\""
},
"dependencies": {
"@adraffy/ens-normalize": "^1.11.1",
"@ethersproject/bignumber": "^5.8.0",
"@opensea/seaport-js": "^4.0.5",
"@rainbow-me/rainbowkit": "^2.2.10",
"@reduxjs/toolkit": "^2.9.0",
"@safe-global/safe-apps-provider": "~0.18.6",
"@safe-global/safe-apps-sdk": "^9.1.0",
"@sparticuz/chromium": "^141.0.0",
"@sparticuz/chromium-min": "^141.0.0",
"@tanstack/react-query": "^5.90.2",
"@types/d3": "^7.4.3",
"@vercel/analytics": "^1.5.0",
"@vercel/og": "^0.8.5",
"@vercel/speed-insights": "^1.2.0",
"clsx": "^2.1.1",
"d3": "^7.9.0",
"ethereum-identity-kit": "^0.2.74",
"next": "15.5.9",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"puppeteer": "^24.31.0",
"puppeteer-core": "^24.31.0",
"react": "19.2.1",
"react-dom": "19.2.1",
"react-redux": "^9.2.0",
"redux": "^5.0.1",
"redux-persist": "^6.0.0",
"tailwind-merge": "^3.3.1",
"viem": "2.47.12",
"wagmi": "^2.19.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.5.4",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-react": "^7.37.5",
"globals": "^15.15.0",
"tailwindcss": "^4",
"typescript": "^5",
"typescript-eslint": "^8.31.0"
}
}