mirror of
https://github.com/status-im/status-web.git
synced 2026-08-30 22:01:15 +00:00
93 lines
2.8 KiB
JSON
93 lines
2.8 KiB
JSON
{
|
|
"name": "hub",
|
|
"version": "1.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"preinstall": "npx only-allow pnpm",
|
|
"predev": "node scripts/generate-legal-last-edited.mjs",
|
|
"dev": "next dev --port 3003",
|
|
"generate:legal-dates": "node scripts/generate-legal-last-edited.mjs",
|
|
"prebuild": "node scripts/generate-legal-last-edited.mjs",
|
|
"build": "next build",
|
|
"build:export": "next build",
|
|
"build:strip-locale": "bash scripts/strip-default-locale-prefix.sh",
|
|
"postbuild": "next-sitemap && pnpm build:strip-locale",
|
|
"start": "serve out",
|
|
"lint": "eslint src",
|
|
"format": "prettier --write . --ignore-path .gitignore",
|
|
"check": "node scripts/generate-legal-last-edited.mjs && tsc --noEmit",
|
|
"clean": "rimraf .next .vercel/output node_modules"
|
|
},
|
|
"dependencies": {
|
|
"@formatjs/intl-localematcher": "^0.7.1",
|
|
"@hookform/devtools": "^4.3.1",
|
|
"@hookform/resolvers": "^3.1.1",
|
|
"@pitininja/cap-react-widget": "^1.3.0",
|
|
"@radix-ui/react-accordion": "^1.2.0",
|
|
"@radix-ui/react-dialog": "^1.1.1",
|
|
"@radix-ui/react-select": "^2.2.6",
|
|
"@scure/base": "^1.2.6",
|
|
"@status-im/colors": "workspace:*",
|
|
"@status-im/components": "workspace:*",
|
|
"@status-im/sitemap-utils": "workspace:*",
|
|
"@status-im/icons": "workspace:*",
|
|
"@status-im/status-network": "workspace:*",
|
|
"@status-im/wallet": "workspace:*",
|
|
"@tanstack/react-query": "^5.90.2",
|
|
"@tanstack/react-table": "^8.21.3",
|
|
"@vercel/analytics": "^1.5.0",
|
|
"connectkit": "^1.9.0",
|
|
"cva": "1.0.0-beta.1",
|
|
"framer-motion": "^12.0.6",
|
|
"hash-wasm": "^4.12.0",
|
|
"negotiator": "^1.0.0",
|
|
"next": "15.5.16",
|
|
"next-intl": "^4.6.0",
|
|
"next-mdx-remote": "^6.0.0",
|
|
"pino-pretty": "^13.1.1",
|
|
"react": "19.1.2",
|
|
"react-dom": "19.1.2",
|
|
"react-hook-form": "^7.45.1",
|
|
"remark-gfm": "^4.0.1",
|
|
"rehype-slug": "^6.0.0",
|
|
"siwe": "^2.3.2",
|
|
"ts-pattern": "^5.6.2",
|
|
"viem": "^2.29.1",
|
|
"wagmi": "2.15.2",
|
|
"zod": "3.25.76"
|
|
},
|
|
"devDependencies": {
|
|
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
|
|
"@next/env": "15.5.16",
|
|
"@next/eslint-plugin-next": "15.5.16",
|
|
"@status-im/eslint-config": "workspace:*",
|
|
"@types/node": "^20",
|
|
"@types/react": "19.1.2",
|
|
"@types/react-dom": "19.1.2",
|
|
"eslint-config-next": "15.5.16",
|
|
"eslint-plugin-tailwindcss": "^3.17.4",
|
|
"globals": "^15.12.0",
|
|
"lint-staged": "^15.4.3",
|
|
"next-sitemap": "^4.2.3",
|
|
"postcss": "^8.5.1",
|
|
"prettier": "^3.4.2",
|
|
"prettier-plugin-tailwindcss": "^0.6.11",
|
|
"serve": "^14.2.5",
|
|
"tailwindcss": "^3.4.11",
|
|
"typescript": "^5.7.3",
|
|
"typescript-eslint": "^8.22.0"
|
|
},
|
|
"engines": {
|
|
"node": "22.x"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,mjs,ts,tsx}": [
|
|
"eslint --fix",
|
|
"prettier --write"
|
|
],
|
|
"*.css": [
|
|
"prettier --write"
|
|
]
|
|
}
|
|
}
|