mirror of
https://github.com/status-im/status-web.git
synced 2026-08-30 13:51:13 +00:00
79 lines
2.6 KiB
JSON
79 lines
2.6 KiB
JSON
{
|
|
"name": "status.network",
|
|
"version": "0.2.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"preinstall": "npx only-allow pnpm",
|
|
"predev": "node scripts/generate-legal-last-edited.mjs",
|
|
"dev": "next dev --port 3002",
|
|
"generate:legal-dates": "node scripts/generate-legal-last-edited.mjs",
|
|
"prebuild": "node scripts/generate-legal-last-edited.mjs && pnpm env:check",
|
|
"env:check": "node -r dotenv/config ./src/config/env.server.mjs dotenv_config_path=./.env && node -r dotenv/config ./src/config/env.client.mjs dotenv_config_path=./.env && :",
|
|
"build": "next build",
|
|
"build:export": "next build",
|
|
"build:strip-locale": "bash scripts/strip-default-locale-prefix.sh",
|
|
"postbuild": "next-sitemap && pnpm build:strip-locale && cp serve.json out/serve.json",
|
|
"start": "serve out -l 3002",
|
|
"preview:production": "pnpm build && pnpm start",
|
|
"lint": "next lint",
|
|
"format": "prettier --write . --ignore-path .gitignore",
|
|
"check": "node scripts/generate-legal-last-edited.mjs && tsc --noEmit && pnpm env:check",
|
|
"clean": "rimraf .next .vercel/output node_modules"
|
|
},
|
|
"dependencies": {
|
|
"@formatjs/intl-localematcher": "^0.7.1",
|
|
"@radix-ui/react-select": "^2.2.6",
|
|
"@status-im/colors": "workspace:*",
|
|
"@status-im/components": "workspace:*",
|
|
"@status-im/sitemap-utils": "workspace:*",
|
|
"@status-im/icons": "workspace:*",
|
|
"@status-im/status-network": "workspace:*",
|
|
"@vercel/analytics": "^1.5.0",
|
|
"cva": "1.0.0-beta.1",
|
|
"framer-motion": "^12.0.6",
|
|
"negotiator": "^1.0.0",
|
|
"next": "15.5.16",
|
|
"next-intl": "^4.6.0",
|
|
"next-mdx-remote": "^6.0.0",
|
|
"react": "19.1.2",
|
|
"react-dom": "19.1.2",
|
|
"rehype-slug": "^6.0.0",
|
|
"remark-gfm": "^4.0.1",
|
|
"ts-pattern": "^5.6.2",
|
|
"zod": "3.25.76"
|
|
},
|
|
"devDependencies": {
|
|
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
|
|
"@next/env": "15.5.16",
|
|
"dotenv": "^16.4.5",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"eslint": "^8.57.1",
|
|
"eslint-config-next": "15.5.16",
|
|
"eslint-plugin-tailwindcss": "^3.17.4",
|
|
"husky": "^9.1.7",
|
|
"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"
|
|
]
|
|
}
|
|
}
|