nym-node-status-ui placeholder (#5902)

Co-authored-by: Mark Sinclair <mmsinclair@users.noreply.github.com>
This commit is contained in:
Mark Sinclair
2025-07-17 20:04:45 +01:00
committed by GitHub
parent 97804f2fe5
commit aaf6931d78
9 changed files with 2397 additions and 0 deletions
@@ -0,0 +1,41 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/versions
# testing
/coverage
# next.js
/.next/
/out/
# production
/build
# misc
.DS_Store
*.pem
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
# env files (can opt-in for committing if needed)
.env*
# vercel
.vercel
# typescript
*.tsbuildinfo
next-env.d.ts
@@ -0,0 +1,18 @@
# Node Status UI
## Build
```bash
pnpm build
```
## Local development
First, run the development server:
```bash
pnpm i
pnpm dev
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
@@ -0,0 +1,63 @@
{
"$schema": "https://biomejs.dev/schemas/1.9.3/schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
"useIgnoreFile": false
},
"files": {
"ignoreUnknown": false,
"ignore": [
".next"
]
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"bracketSpacing": true,
"indentWidth": 2
},
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"correctness": {
"noUnusedImports": "error",
"useExhaustiveDependencies": "warn"
},
"suspicious": {
"noExplicitAny": "off",
"noArrayIndexKey": "warn"
},
"style": {
"useTemplate": "warn"
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "double"
}
},
"overrides": [
{
"include": ["client/**"],
"linter": {
"rules": {
"style": {
"noUselessElse": "off",
"noParameterAssign": "off",
"noNonNullAssertion": "off"
},
"complexity": {
"noUselessSwitchCase": "off",
"noForEach": "off"
}
}
}
}
]
}
@@ -0,0 +1,7 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
};
export default nextConfig;
@@ -0,0 +1,38 @@
{
"name": "nym-node-status-ui",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "biome check ./src",
"lint:fix": "biome check ./src --fix",
"generate:openapi-client": "npx @hey-api/openapi-ts -o src/client -p '@tanstack/react-query' -i https://mainnet-node-status-api.nymtech.cc/api-docs/openapi.json"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.2.0",
"@mui/material": "^7.2.0",
"@mui/material-nextjs": "^7.2.0",
"@mui/x-charts": "^8.8.0",
"@mui/x-date-pickers": "^7.29.4",
"@tanstack/react-query": "^5.83.0",
"dayjs": "^1.11.13",
"material-react-table": "^3.2.1",
"next": "^15.4.1",
"openapi-typescript": "^7.5.2",
"react": "^19.0.0",
"react-country-flag": "^3.1.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tanstack/react-query-devtools": "^5.83.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"typescript": "^5"
}
}
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,11 @@
"use client";
export default function RootLayout(props: { children: React.ReactNode }) {
return (
<html lang="en" suppressHydrationWarning>
<body>
{props.children}
</body>
</html>
);
}
@@ -0,0 +1,7 @@
"use client";
export default function Home() {
return (
<div>TODO</div>
);
}
@@ -0,0 +1,27 @@
{
"compilerOptions": {
"target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}