-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
38 lines (38 loc) · 1.05 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"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 --ext .js,.ts",
"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": {
"@types/bcrypt": "^5.0.0",
"@types/mocha": "^5.2.6",
"@types/node": "^22.7.8",
"@types/pg": "^8.10.3",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"mocha": "^6.0.2",
"nodemailer": "^6.6.5",
"typescript": "^5.3.3"
},
"private": true
}