-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.66 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
{
"name": "bitbot",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"start": "ts-node --require ./src/helpers/suppress-warnings.js ./src/index.ts",
"docker:build": "docker build --pull --rm -f \"Dockerfile\" -t utdmakerspace/bit-bot:latest \".\"",
"docker:push": "docker push utdmakerspace/bit-bot:latest",
"docker": "npm run docker:build && npm run docker:push",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/utdesign-makerspace/BitBot.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/utdesign-makerspace/BitBot/issues"
},
"homepage": "https://github.com/utdesign-makerspace/BitBot#readme",
"dependencies": {
"@discordjs/builders": "^0.12.0",
"@discordjs/rest": "^1.1.0",
"@sentry/node": "^7.14.1",
"@sentry/tracing": "^7.14.1",
"axios": "^0.24.0",
"cron": "^2.1.0",
"date-fns": "^2.28.0",
"discord-api-types": "^0.37.11",
"discord.js": "^14.3.0",
"dotenv": "^16.0.2",
"fs-readdir-recursive": "^1.1.0",
"googleapis": "^108.0.0",
"humanize-duration": "^3.27.0",
"ldapjs": "^2.3.1",
"ldapjs-promise": "^1.0.6",
"mariadb": "^3.0.0",
"mongoose": "^6.0.12",
"mqtt": "^4.2.8",
"node-persist": "^3.1.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"devDependencies": {
"@types/cron": "^2.0.1",
"@types/fs-readdir-recursive": "^1.1.0",
"@types/node-persist": "^3.1.3",
"eslint": "^8.23.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"lint-staged": "^13.0.3",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1"
}
}