-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.39 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
{
"name": "prompt-to-storyboard-backend",
"version": "1.0.0",
"description": "REST api for p2s",
"main": "server.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "tsc-watch --onSuccess \"node dist/server.js\"",
"lint": "eslint --fix \"src/**/*.ts\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"dependencies": {
"axios": "^1.6.5",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-basic-auth": "^1.2.1",
"fluent-ffmpeg": "^2.1.2",
"google-auth-library": "^9.4.2",
"microsoft-cognitiveservices-speech-sdk": "^1.34.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.7.0",
"ollama": "^0.5.0",
"openai": "^4.24.7",
"uuid": "^9.0.1",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/fluent-ffmpeg": "^2.1.24",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.11",
"@types/node": "^20.11.1",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"tsc-watch": "^6.0.4",
"typescript": "^5.3.3"
}
}