-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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
48
49
50
51
52
{
"name": "@eyevinn/auto-subtitles",
"version": "0.0.1",
"description": "Automatically generate subtitles from an input audio or video file using Open AI Whisper",
"scripts": {
"test": "jest",
"prepare": "husky install",
"lint": "eslint .",
"pretty": "prettier --check --ignore-unknown .",
"typecheck": "tsc --noEmit -p tsconfig.json",
"dev": "nodemon",
"start": "ts-node -T src/server.ts"
},
"license": "MIT",
"engines": {
"node": ">=18.15.0"
},
"author": "Oscar Nord <[email protected]>",
"dependencies": {
"@fastify/cors": "^8.2.0",
"@fastify/swagger": "^8.3.1",
"@fastify/swagger-ui": "^1.5.0",
"@fastify/type-provider-typebox": "^2.4.0",
"@sinclair/typebox": "^0.25.24",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"child_process": "^1.0.2",
"dotenv": "^16.0.3",
"fastify": "^4.15.0",
"nanoid": "^3.3.2",
"openai": "^4.29.2",
"@aws-sdk/client-s3": "^3.299.0",
"aws-sdk": "^2.1587.0",
"@aws-sdk/lib-storage": "^3.540.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@types/jest": "^29.5.12",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^2.8.4",
"ts-jest": "^29.1.2",
"typescript": "^4.9.5"
}
}