-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
73 lines (73 loc) · 2.17 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "buggie-bot",
"version": "0.0.1",
"description": "SerenityOS Discord Bot",
"main": "index.js",
"license": "BSD-2-Clause",
"engines": {
"node": ">=16 <=18.17.1"
},
"scripts": {
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"start:dev": "nodemon --watch './src/**' --ext 'ts,js,json' --exec \"ts-node --files ./src/index.ts\"",
"prebuild": "rimraf ./build",
"build": "tsc",
"prestart": "npm run build",
"start": "node build/index.js",
"test": "mocha -r ts-node/register tests/**/*.test.ts"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": ".ts,.js",
"ignore": [],
"exec": "ts-node --files ./src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SerenityOS/discord-bot.git"
},
"keywords": [
"discord",
"typescript",
"bot",
"serenityos"
],
"bugs": {
"url": "https://github.com/SerenityOS/discord-bot/issues"
},
"homepage": "https://github.com/SerenityOS/discord-bot#readme",
"devDependencies": {
"@octokit/types": "^9.1.2",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.1",
"chai": "^4.3.7",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"mocha": "^10.2.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"ts-node": "^10.9.1"
},
"dependencies": {
"@octokit/plugin-throttling": "^5.1.1",
"@octokit/rest": "^19.0.7",
"@types/node": "^18.16.3",
"axios": "^1.4.0",
"bufferutil": "^4.0.7",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"mastodon": "^1.2.2",
"octokit-plugin-create-pull-request": "^4.1.1",
"rimraf": "^5.0.0",
"typescript": "^5.0.4",
"utf-8-validate": "^6.0.3",
"zlib-sync": "^0.1.8"
}
}