forked from acmutd/acm-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.45 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
{
"name": "acm-bot",
"version": "2.0.0",
"description": "The official Discord bot for the ACM Community server.",
"main": "index.js",
"scripts": {
"build": "tsc",
"boot": "node dist/index.js",
"start": "npm run clean && npm run build && npm run boot",
"prepare": "husky install",
"clean": "tsc --build --clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jafrilli/acm-bot.git"
},
"author": "Jafar Ali",
"license": "MIT",
"bugs": {
"url": "https://github.com/jafrilli/acm-bot/issues"
},
"homepage": "https://github.com/jafrilli/acm-bot#readme",
"dependencies": {
"@discordjs/builders": "^1.5.0",
"@discordjs/rest": "^1.6.0",
"@google-cloud/firestore": "^6.4.3",
"axios": "^1.3.4",
"body-parser": "^1.19.0",
"discord-api-types": "^0.37.37",
"discord.js": "^14.8.0",
"express": "^4.18.1",
"is-url": "^1.2.4",
"leeks.js": "^0.0.8",
"node-schedule": "^2.1.1",
"shlex": "^2.1.0",
"source-map-support": "^0.5.20",
"table": "^6.7.1",
"typescript": "^4.9.5",
"uuid": "^8.3.2",
"zod": "^3.20.6"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/is-url": "^1.2.29",
"@types/node-schedule": "^2.1.0",
"@types/source-map-support": "^0.5.4",
"@types/uuid": "^9.0.1",
"husky": "^7.0.1",
"lint-staged": "^13.1.2",
"prettier": "^2.8.2"
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}