pokemon-showdown-loginserver/package.json
Guangcong Luo a56f1f160f Upgrade to ESLint 9
Following the upgrade in Client and Server; you know the drill.

(ESLint 9 requires minimum Node version 18, hence the GitHub Actions
version bump.)
2025-02-25 21:28:46 -08:00

39 lines
1.0 KiB
JSON

{
"name": "pokemon-showdown-login",
"version": "0.1.0",
"homepage": "https://pokemonshowdown.com",
"license": "AGPL-3.0",
"main": "./.dist/src/index.js",
"scripts": {
"lint": "eslint --cache --max-warnings 0",
"build": "npx tsc",
"run": "npx tsc && node .dist/src/",
"start": "npx tsc && npx pm2 start config/pm2.js",
"test": "npm run lint && npx tsc",
"reload": "npx tsc && npx pm2 reload config/pm2.js",
"stop": "npx pm2 stop config/pm2.js"
},
"dependencies": {
"bcrypt": "^5.0.1",
"google-auth-library": "^9.14.2",
"mysql2": "^3.9.8",
"pg": "^8.11.3",
"pm2": "^5.1.2",
"testcontainers": "^9.1.1"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^4.0.1",
"@types/bcrypt": "^5.0.0",
"@types/mocha": "^5.2.6",
"@types/node": "^22.7.8",
"@types/pg": "^8.10.3",
"eslint": "^9.21.0",
"globals": "^16.0.0",
"mocha": "^6.0.2",
"nodemailer": "^6.6.5",
"typescript": "^5.7.3",
"typescript-eslint": "^8.25.0"
},
"private": true
}