-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 938 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
{
"name": "llmommy",
"version": "1.0.0",
"description": "",
"main": "main.js",
"type": "module",
"scripts": {
"lint": "npx eslint ./src/",
"dev": "npx eslint ./src/ && cross-env NODE_ENV=development MONGO_DB_URI=mongodb://admin:secret@127.0.0.1:27018/admin nodemon ./src/main.js",
"start": "npx eslint ./src/ && cross-env NODE_ENV=production node ./src/main.js"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"axios": "^1.3.5",
"config": "^3.3.9",
"cross-env": "^7.0.3",
"fluent-ffmpeg": "^2.1.2",
"mongoose": "^7.0.3",
"openai": "^3.2.1",
"pino": "^9.4.0",
"telegraf": "^4.12.2",
"uuid": "^10.0.0"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"eslint": "^9.12.0",
"nodemon": "^2.0.22"
}
}