-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
47 lines (47 loc) · 1.18 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
{
"name": "typescript-starter",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node src/index.ts",
"dev": "nodemon --watch 'src/**/*.ts' --exec ts-node src/index.ts",
"typecheck": "tsc --noEmit",
"build": "tsc",
"format": "prettier --write src/**/*.ts"
},
"keywords": [],
"author": "",
"dependencies": {
"@azure/storage-blob": "^12.16.0",
"@types/cheerio": "^0.22.35",
"axios": "^1.6.2",
"cheerio": "^1.0.0-rc.12",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"ffmpeg-static": "^5.2.0",
"ffprobe-static": "^3.1.0",
"fluent-ffmpeg": "^2.1.2",
"fs-extra": "^11.1.1",
"googleapis": "^126.0.1",
"langchain": "0.0.180",
"nodejs-whisper": "^0.1.6",
"openai": "^3.3.0",
"puppeteer": "^21.5.0",
"shelljs": "^0.8.5"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/ffprobe-static": "^2.0.3",
"@types/fluent-ffmpeg": "^2.1.23",
"@types/fs-extra": "^11.0.2",
"@types/node": "^20.9.0",
"@types/shelljs": "^0.8.14",
"prettier": "^3.0.3",
"ts-node": "^10.8.2",
"typescript": "^5.2.2"
}
}