trade-frontend/package.json
Claude 677b844aaa
rebrand(lethean): update branding, ports, and config for Lethean blockchain
- Coin: Zano → Lethean, ticker: ZAN/ZANO → LTHN
- Ports: 11211 → 36941 (mainnet RPC), 46941 (testnet RPC)
- Wallet: 11212 → 36944/46944
- Address prefix: iTHN
- URLs: zano.org → lethean.io
- Explorer links: explorer.lthn.io

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-01 22:24:09 +01:00

66 lines
1.6 KiB
JSON

{
"name": "lethean-p2p",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --webpack",
"build": "next build --webpack",
"start": "next start -p 30289",
"lint": "next lint",
"eslint": "eslint . --ext .js,.ts,.tsx,.jsx --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"submodule": "git submodule update --init --recursive"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix --config .eslintrc.cjs"
]
},
"dependencies": {
"@ant-design/icons": "^5.2.6",
"@ant-design/icons-svg": "^4.3.1",
"@react-hook/window-size": "^3.1.1",
"@tanstack/react-table": "^8.21.3",
"antd": "^5.23.2",
"apexcharts": "^4.0.0",
"axios": "^1.13.2",
"decimal.js": "^10.4.3",
"echarts": "^5.5.1",
"echarts-for-react": "^3.0.2",
"nanoid": "^5.1.6",
"next": "^14.2.35",
"next-themes": "^0.2.1",
"node-fetch": "^3.3.1",
"nprogress": "^0.2.0",
"react": "^18.3.1",
"react-apexcharts": "^1.5.0",
"react-dom": "^18.3.1",
"react-intersection-observer": "^9.10.3",
"react-joyride": "^2.9.3",
"sha256": "^0.2.0",
"socket.io": "^4.6.1",
"socket.io-client": "^4.6.1",
"ts-node": "^10.9.2",
"tsc": "^2.0.4",
"tsx": "^4.15.7",
"url-loader": "^4.1.1",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@svgr/webpack": "^8.0.1",
"@types/nprogress": "^0.2.3",
"@types/react": "18.2.16",
"@types/react-dom": "^18.2.7",
"@types/sha256": "^0.2.0",
"eslint-config-jejolare": "^3.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"sass": "^1.59.2"
},
"overrides": {
"diff": "8.0.3"
}
}