-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.59 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
{
"name": "discord-member-status-bot",
"version": "1.0.0",
"description": "A Discord bot that provides real-time insights into member activity within a server.",
"main": "src/index.ts",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && tsc-watch --onSuccess \"npm run build:copy && npm run build:dashboard\"",
"build:copy": "cp src/config/env.config.ts dist/config/env.config.ts",
"build:dashboard": "cd dashboard && npm run build",
"dev": "tsc-watch --onSuccess \"npm run dev:copy && npm run dev:dashboard\"",
"dev:copy": "cp src/config/env.config.ts dist/config/env.config.ts",
"dev:dashboard": "cd dashboard && npm run dev",
"start": "node dist/index.js",
"lint": "eslint src//.ts",
"test": "jest",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/your-username/discord-member-status-bot.git"
},
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"@types/discord.js": "^14.6.4",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.9",
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"tsc-watch": "^5.0.3",
"typescript": "^4.9.4"
},
"dependencies": {
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"mysql2": "^2.3.3",
"webpack": "^5.76.1",
"express": "^4.18.2",
"socket.io": "^4.6.1"
}
}