-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.18 KB
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
{
"name": "healsync-backend",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "nodemon ./bin/www",
"dev": "nodemon ./bin/www",
"format": "npx prettier . --write",
"debug": "DEBUG=healsync-backend:server npm start",
"migration:run": "sequelize-cli db:migrate",
"migration:revert": "sequelize-cli db:migrate:undo:all",
"seeder:run": "sequelize-cli db:seed:all",
"seeder:revert": "sequelize-cli db:seed:undo:all"
},
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.978.0",
"assemblyai": "^4.22.1",
"axios": "^1.13.4",
"bullmq": "^5.67.2",
"cors": "^2.8.6",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"http": "^0.0.1-security",
"http-errors": "^2.0.1",
"ioredis": "^5.9.2",
"jsonwebtoken": "^9.0.3",
"module-alias": "^2.2.3",
"multer": "^2.0.2",
"nodemon": "^3.1.11",
"openai": "^6.17.0",
"pg": "^8.17.2",
"pgvector": "^0.2.1",
"sequelize": "^6.37.7",
"winston": "^3.19.0"
},
"_moduleAliases": {
"@shared": "./shared",
"@middlewares": "./middlewares/"
},
"devDependencies": {
"sequelize-cli": "^6.6.5"
}
}