-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 950 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
37
{
"name": "chatbot",
"version": "1.0.0",
"description": "A template of REST API app using Oak framework",
"main": "index.js",
"type": "commonjs",
"scripts": {
"build": "tsc",
"start": "node ./src/index.js",
"lint": "eslint . --cache --fix --ext .ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@mozilla/readability": "^0.5.0",
"colors": "^1.4.0",
"discord.js": "^14.11.0",
"dompurify": "^3.0.5",
"dotenv": "^16.3.1",
"jsdom": "^24.0.0",
"openai": "^4.24.1",
"youtube-transcript": "^1.0.6"
},
"devDependencies": {
"@tsconfig/node-lts": "^20.1.0",
"@types/dompurify": "^3.0.2",
"@types/jsdom": "^21.1.1",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.23.1",
"eslint-plugin-import": "^2.22.1",
"ts-node": "^10.9.2",
"tslib": "^2.2.0",
"typescript": "^5.0.2"
}
}