trade-backend/package.json

59 lines
1.5 KiB
JSON
Raw Normal View History

2025-07-01 21:07:46 +05:00
{
"name": "zano-trade-backend",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "cross-env PORT=3000 nodemon --exec tsx ./src/server.ts",
"start": "cross-env NODE_ENV=production PORT=30289 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",
"jimp": "^0.22.8",
"jsonwebtoken": "^9.0.0",
"nanoid": "^4.0.1",
"node-fetch": "^3.3.1",
"nodemon": "^2.0.22",
"pg": "^8.10.0",
"sequelize": "^6.37.3",
"sha256": "^0.2.0",
"socket.io": "^4.6.1",
"sqlite3": "^5.1.7",
"ts-node": "^10.9.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-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"
}
}