Files
pokemon-showdown-client/package.json
2026-07-28 03:50:50 -07:00

58 lines
1.9 KiB
JSON

{
"name": "pokemon-showdown-client",
"version": "0.11.2",
"author": "Guangcong Luo <guangcongluo@gmail.com> (http://guangcongluo.com)",
"homepage": "https://pokemonshowdown.com",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/Zarel/Pokemon-Showdown-Client.git"
},
"engines": {
"node": ">=24.12.0"
},
"scripts": {
"lint": "eslint --cache --cache-location caches/eslintcache.json --max-warnings 0",
"typecheck": "tsc -p tsconfig.json && tsc -p api/tsconfig.json",
"test": "node build && npm run typecheck && npm run lint && node --test test/*.js api/src/test/*.test.ts",
"fix": "eslint --cache --cache-location caches/eslintcache.json --fix",
"build": "node build",
"build-full": "node build full",
"api": "node api/src/index.js",
"api:start": "pm2 start api/src/index.js --name loginserver --interpreter node",
"api:reload": "pm2 reload loginserver",
"api:stop": "pm2 stop loginserver"
},
"dependencies": {
"@babel/core": "^7.26.10",
"@babel/plugin-transform-react-jsx": "^7.25.9",
"@babel/plugin-transform-strict-mode": "^7.25.9",
"@babel/preset-env": "^7.26.9",
"@babel/preset-typescript": "^7.27.0",
"babel-plugin-remove-import-export": "^1.1.1",
"bcrypt": "^6.0.0",
"google-auth-library": "^10.9.0",
"image-size": "^0.7.5",
"mysql2": "^3.23.0",
"pg": "^8.22.0",
"pm2": "^7.0.3"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@stylistic/eslint-plugin": "^4.0.1",
"@types/bcrypt": "^6.0.0",
"@types/d3": "^3.5.53",
"@types/jquery": "^3.5.3",
"@types/node": "^26.1.1",
"@types/pg": "^8.20.0",
"eslint": "^9.20.1",
"globals": "^16.0.0",
"nodemailer": "^9.0.3",
"preact": "^10.29.2",
"source-map": "^0.7.3",
"typescript": "^6.0.3",
"typescript-eslint": "~8.58.2"
},
"private": true
}