{ "name": "explorer-frontend", "version": "1.0.0", "private": true, "packageManager": "npm@10.8.2", "engines": { "node": ">=20.0.0 <21.0.0", "npm": ">=10.0.0" }, "scripts": { "dev": "sh -c 'HOST=${HOST:-127.0.0.1}; PORT=${PORT:-3000}; next dev -H \"$HOST\" -p \"$PORT\"'", "build": "next build", "build:check": "npm run lint && npm run type-check && npm run build", "smoke:routes": "node ./scripts/smoke-routes.mjs", "start": "PORT=${PORT:-3000} node ./scripts/start-standalone.mjs", "start:next": "next start", "lint": "eslint src libs next.config.js --ext .js,.jsx,.ts,.tsx", "type-check": "tsc --noEmit -p tsconfig.check.json", "test": "npm run lint && npm run type-check && npm run test:unit", "test:unit": "vitest run" }, "dependencies": { "@tanstack/react-query": "^5.14.2", "autoprefixer": "^10.4.16", "axios": "^1.15.2", "clsx": "^2.0.0", "date-fns": "^3.0.6", "js-sha3": "^0.9.3", "next": "^15.5.15", "postcss": "^8.5.10", "react": "^18.2.0", "react-dom": "^18.2.0", "tailwindcss": "^3.3.6", "zustand": "^4.4.7" }, "devDependencies": { "@types/node": "^20.10.5", "@types/prop-types": "^15.7.15", "@types/react": "^18.2.45", "@types/react-dom": "^18.2.18", "eslint": "^8.56.0", "eslint-config-next": "^15.5.15", "typescript": "^5.3.3", "vitest": "^4.1.5" }, "overrides": { "esbuild": "^0.28.0", "postcss": "^8.5.10" } }