pay-svr/package.json

61 lines
1.8 KiB
JSON

{
"name": "pay-svr",
"version": "1.0.0",
"description": "from wallet-svr",
"main": "index.js",
"scripts": {
"dev:api": "ts-node -r tsconfig-paths/register src/api.ts",
"prod:api": "NODE_ENV=production NODE_PATH=./dist node dist/api.js",
"test": "ts-node -r tsconfig-paths/register src/test.ts",
"dev:monitor": "ts-node -r tsconfig-paths/register src/google.monitor.ts",
"prod:monitor": "NODE_ENV=production NODE_PATH=./dist node dist/google.monitor.js",
"build": "tsc",
"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/view": "^7.4.1",
"axios": "^1.1.3",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"ejs": "^3.1.9",
"fast-rbac": "^2.0.1",
"fastify": "^4.8.1",
"fastify-plugin": "^4.2.1",
"get-jwks": "^9.0.2",
"google-auth-library": "^8.5.2",
"googleapis": "^120.0.0",
"jose": "^4.14.4",
"mongoose": "^6.6.5",
"mongoose-findorcreate": "^3.0.0",
"nanoid": "^3.1.23",
"node-schedule": "^2.1.1",
"redis": "^3.1.2",
"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",
"@types/redis": "^2.8.28",
"@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"
}
}