-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1 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
{
"name": "youtube-summary-notion",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"test": "jest",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.27.3",
"@notionhq/client": "^2.2.5",
"@slack/web-api": "^7.4.0",
"axios": "^0.27.2",
"body-parser": "^1.19.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"googleapis": "^105.0.0",
"he": "^1.2.0",
"loadash": "^1.0.0",
"mongoose": "^8.6.3",
"xml2js": "^0.4.23",
"youtube-captions-scraper": "^2.0.3"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.13",
"@types/he": "^1.2.3",
"@types/jest": "^29.5.13",
"@types/lodash": "^4.17.7",
"@types/node": "^18.7.14",
"@types/xml2js": "^0.4.9",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
}
}