-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
{
"name": "partbot",
"version": "3.0.0",
"description": "A chatbot for Pokémon Showdown",
"main": "src/index.js",
"scripts": {
"build-configs": "bash ./scripts/build_nginx_confs.sh",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"notify-unpushed": "sh ./scripts/notify-unpushed.sh",
"prettify": "prettier -w",
"prepare": "sh ./scripts/setup.sh",
"start": "ts-node --swc src/index.ts",
"test": "npm run lint && npm run tsc",
"tsc": "tsc"
},
"keywords": [],
"author": "PartMan7",
"license": "ISC",
"dependencies": {
"@swc/core": "^1.7.40",
"axios": "^1.6.0",
"chokidar": "^3.5.3",
"discord.js": "^14.11.0",
"dotenv": "^16.3.1",
"express": "^5.0.1",
"flat-cache": "^6.1.1",
"mongoose": "^7.4.1",
"ps-client": "^4.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^20.4.4",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"husky": "^8.0.3",
"prettier": "^3.3.3"
}
}