forked from keldaanCommunity/pokemonAutoChess
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.44 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "pokemon-auto-chess",
"version": "3.10.0",
"description": "",
"keywords": [],
"license": "MIT",
"engines": {
"node": "18.17"
},
"homepage": "https://github.com/keldaanCommunity/pokemonAutoChess#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/keldaanCommunity/pokemonAutoChess.git"
},
"bugs": {
"url": "https://github.com/keldaanCommunity/pokemonAutoChess/issues"
},
"author": "keldaan-ag",
"contributors": [
"ogus",
"sylvainpolletvillard"
],
"main": "dist/server/index.js",
"scripts": {
"reset": "rm -rf node_modules/ && rm -f app/public/js/*",
"dev-client": "node esbuild.js --dev",
"dev-server": "ts-node-dev --watch \"src/**/*\" --respawn --transpile-only ./app/index.ts",
"dev": "npm-run-all --parallel dev-*",
"lint": "npx eslint app/",
"build-client": "node esbuild.js --build",
"build-server": "tsc",
"build": "npm run build-client && npm run build-server",
"start": "node --optimize_for_size --max_old_space_size=800 ./app/public/dist/server/app/index.js",
"add-bot": "node ./app/public/dist/server/db-commands/populate-bot.js",
"monitor-bot": "node ./app/public/dist/server/scheduled/monitor-bot.js",
"update-items": "node ./app/public/dist/server/db-commands/update-items.js"
},
"dependencies": {
"@colyseus/command": "^0.2.1",
"@colyseus/monitor": "^0.15.1",
"@colyseus/ws-transport": "^0.15.0",
"@reduxjs/toolkit": "^1.9.2",
"@types/bootstrap": "^5.2.6",
"body-parser": "^1.20.1",
"colyseus": "^0.15.0",
"colyseus.js": "^0.15.6",
"cors": "^2.8.5",
"discord.js": "^13.6.0",
"dotenv": "^16.0.3",
"elo-rank": "^1.0.4",
"express": "^4.18.2",
"express-basic-auth": "^1.2.0",
"express-openapi": "^11.0.0",
"express-rate-limit": "^6.7.0",
"fast-xml-parser": "^4.2.4",
"firebase": "^9.16.0",
"firebase-admin": "^11.5.0",
"firebaseui": "^6.0.2",
"graceful-fs": "^4.2.10",
"i18next": "^23.2.11",
"i18next-browser-languagedetector": "^7.1.0",
"i18next-http-backend": "^2.2.1",
"immer": "^9.0.19",
"jimp": "^0.16.1",
"loglevel": "^1.8.1",
"marked": "^5.0.2",
"matter-js": "^0.19.0",
"mongoose": "^6.11.3",
"nanoid": "^3.0.0",
"nes.css": "^2.3.0",
"pastebin-ts": "^1.3.0",
"phaser": "^3.60.0",
"phaser3-rex-plugins": "^1.1.80",
"react": "^17.0.2",
"react-bootstrap": "^2.7.0",
"react-circular-progressbar": "^2.1.0",
"react-dom": "^17.0.2",
"react-firebaseui": "^6.0.0",
"react-i18next": "^13.0.2",
"react-redux": "^7.2.6",
"react-router-dom": "^6.8.0",
"react-tabs": "^4.0.1",
"react-toastify": "^9.1.1",
"react-tooltip": "^4.5.1",
"unique-names-generator": "^4.7.1"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@types/cors": "^2.8.13",
"@types/elo-rank": "^1.0.1",
"@types/fs-extra": "^9.0.13",
"@types/matter-js": "^0.18.2",
"@types/react-dom": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"csv-writer": "^1.6.0",
"esbuild": "^0.17.17",
"eslint": "^8.33.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-react-hooks": "^4.6.0",
"fs-extra": "^10.0.1",
"npm-run-all": "^4.1.5",
"openapi-typescript": "^5.3.0",
"redux-devtools-extension": "^2.13.9",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
}
}