-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 877 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 877 Bytes
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
{
"name": "mindustry_tool_discord_bot",
"version": "1.0.0",
"description": "",
"main": "/src/main.ts",
"scripts": {
"dev": "ts-node-dev ./src/main.ts",
"register": "ts-node-dev ./src/register.ts",
"build": "tsc",
"start": "node dist/main.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^5.0.0",
"@types/morgan": "^1.9.9",
"@types/node": "^22.10.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.2"
},
"dependencies": {
"axios": "^1.7.9",
"discord-interactions": "^4.1.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-async-errors": "^3.1.1",
"morgan": "^1.10.0",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"zod": "^3.24.1"
}
}