-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.07 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
{
"name": "alfred",
"version": "0.0.1",
"description": "Github Ticket Creator",
"repository": "https://github.com/viv-cheung/alfred",
"homepage": "",
"license": "MIT",
"scripts": {
"start": "ts-node src/bot.ts",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx --fix"
},
"dependencies": {
"@discordjs/builders": "^1.6.1",
"@octokit/auth-app": "^4.0.9",
"@octokit/rest": "^19.0.7",
"discord.js": "^14.9.0",
"dotenv": "^16.0.3",
"openai": "^3.2.1"
},
"devDependencies": {
"@octokit/app": "^13.1.2",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"ts-node": "^10.9.1",
"typescript": "*"
},
"engines": {
"node": ">=19.0.0"
}
}