account/package.json
2024-12-18 14:37:15 +01:00

88 lines
2.5 KiB
JSON

{
"name": "account",
"version": "2.0.0",
"description": "",
"main": "./dist/server.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"build": "npm run lint && npm run clean && npx tsc && npx tsc-alias && npm run copy-static",
"clean": "rimraf ./dist",
"copy-static": "copyfiles -e \"src/**/*.ts\" -u 1 \"src/**/*\" dist",
"start": "node .",
"start:dev": "cross-env NODE_ENV=development node ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/PretendoNetwork/account.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/PretendoNetwork/account/issues"
},
"homepage": "https://github.com/PretendoNetwork/account#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.657.0",
"@aws-sdk/client-ses": "^3.515.0",
"@inquirer/prompts": "^7.2.0",
"@pretendonetwork/grpc": "^1.0.5",
"bcrypt": "^5.0.0",
"buffer-crc32": "^0.2.13",
"colors": "^1.4.0",
"cors": "^2.8.5",
"crc": "^4.3.2",
"dicer": "^0.2.5",
"dotenv": "^16.0.3",
"ejs": "^3.1.10",
"email-validator": "^2.0.4",
"express": "^4.17.1",
"express-rate-limit": "^6.7.0",
"fs-extra": "^8.1.0",
"got": "^11.8.2",
"hcaptcha": "^0.1.0",
"image-pixels": "^1.1.1",
"is-valid-hostname": "^1.0.2",
"joi": "^17.8.3",
"mii-js": "github:PretendoNetwork/mii-js",
"moment": "^2.29.4",
"mongoose": "^7.0.0",
"mongoose-unique-validator": "^4.0.0",
"morgan": "^1.9.1",
"nice-grpc": "^2.1.4",
"node-rsa": "^1.0.7",
"nodemailer": "^6.4.2",
"redis": "^4.3.1",
"stripe": "^12.3.0",
"tga": "^1.0.4",
"typescript-is": "^0.19.0",
"validator": "^13.7.0",
"xmlbuilder": "^13.0.2",
"xmlbuilder2": "0.0.4",
"zod": "^3.21.4"
},
"devDependencies": {
"@hcaptcha/types": "^1.0.3",
"@types/bcrypt": "^5.0.0",
"@types/buffer-crc32": "^0.2.2",
"@types/cors": "^2.8.13",
"@types/dicer": "^0.2.2",
"@types/express": "^4.17.17",
"@types/fs-extra": "^11.0.1",
"@types/morgan": "^1.9.4",
"@types/ndarray": "^1.0.11",
"@types/node": "^18.14.4",
"@types/node-rsa": "^1.1.1",
"@types/nodemailer": "^6.4.7",
"@types/qs": "^6.9.7",
"@types/validator": "^13.7.14",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "^8.35.0",
"ndarray": "^1.0.19",
"typescript": "^4.9.5"
}
}