-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 936 Bytes
/
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
{
"name": "chatgpt-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prestart": "rm -rf dist/",
"start": "tsc && node dist/index.js "
},
"author": "",
"license": "ISC",
"dependencies": {
"@discordjs/builders": "^1.1.0",
"@discordjs/rest": "^0.6.0",
"@types/jsdom": "^16.2.15",
"axios": "^0.27.2",
"discord-api-types": "^0.37.0",
"discord.js": "^14.0.1",
"dotenv": "^8.6.0",
"jsdom": "^19.0.0",
"node-cron": "^3.0.0",
"openai": "^3.1.0",
"tslib": "^2.4.0",
"typescript": "^4.7.3"
},
"devDependencies": {
"@types/node": "^16.11.42",
"@types/node-cron": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.4.1",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0"
}
}