wallet-svr/package.json

60 lines
1.7 KiB
JSON

{
"name": "wallet-svr",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev:api": "ts-node -r tsconfig-paths/register src/api.ts",
"build": "tsc",
"prod:api": "NODE_ENV=production NODE_PATH=./dist node dist/api.js",
"lint": "eslint --ext .ts src/**",
"format": "eslint --ext .ts src/** --fix"
},
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/cors": "^8.1.0",
"@fastify/formbody": "^7.3.0",
"@fastify/helmet": "^10.0.1",
"@fastify/jwt": "^6.3.2",
"@fastify/rate-limit": "^9.1.0",
"@fastify/view": "^7.4.1",
"@metamask/eth-sig-util": "^4.0.1",
"axios": "^1.1.3",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"ejs": "^3.1.9",
"ethers": "^5.6.8",
"fast-rbac": "^2.0.1",
"fastify": "^4.8.1",
"fastify-plugin": "^4.2.1",
"google-auth-library": "^8.5.2",
"ioredis": "^5.4.1",
"mongoose": "^6.6.5",
"mongoose-findorcreate": "^3.0.0",
"nanoid": "^3.1.23",
"node-schedule": "^2.1.1",
"redlock": "^5.0.0-beta.2",
"rustwallet": "file:./rustwallet",
"siwe": "^2.1.4",
"tracer": "^1.1.6",
"verify-apple-id-token": "^3.0.0",
"zutils": "link:packages/zutils"
},
"devDependencies": {
"@typegoose/typegoose": "^9.12.1",
"@types/dotenv": "^8.2.0",
"@types/node-schedule": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.4"
}
}