trade-backend/package.json
Claude 1623966c32
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:07 +01:00

60 lines
1.5 KiB
JSON

{
"name": "lethean-trade-backend",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "nodemon --exec tsx ./src/server.ts",
"start": "tsx ./src/server.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"axios": "^1.4.0",
"big.js": "^6.2.1",
"crypto-js": "^4.1.1",
"decimal.js": "^10.4.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^8.2.1",
"express-validator": "^7.3.1",
"jimp": "^0.22.8",
"jsonwebtoken": "^9.0.0",
"nanoid": "^5.1.5",
"node-fetch": "^3.3.1",
"nodemon": "^3.1.10",
"pg": "^8.10.0",
"sequelize": "^6.37.3",
"sha256": "^0.2.0",
"socket.io": "^4.6.1",
"ts-node": "^1.7.1",
"tsx": "^4.15.7",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@types/big.js": "^6.2.0",
"@types/crypto-js": "^4.1.1",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/pg": "^8.10.2",
"@types/sha256": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-next": "^15.3.5",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.31.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"prettier": "3.5.3",
"sequelize-cli": "^6.6.2"
}
}