-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.88 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.88 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "icare",
"type": "module",
"private": true,
"devDependencies": {
"@eslint/js": "^9.22.0",
"@types/bun": "latest",
"@types/express": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^16.0.0",
"husky": "^8.0.0",
"lint-staged": "^15.5.0",
"prettier": "^3.5.3",
"typescript-eslint": "^8.26.1"
},
"peerDependencies": {
"typescript": "^5.8.3"
},
"dependencies": {
"@ai-sdk/google": "^1.2.13",
"@ai-sdk/openai": "^1.3.18",
"@aws-sdk/client-polly": "^3.774.0",
"@aws-sdk/client-transcribe-streaming": "^3.787.0",
"@deepgram/sdk": "^3.12.1",
"@google/generative-ai": "^0.24.0",
"@mastra/core": "^0.9.0",
"@sequelize/postgres": "7.0.0-alpha.46",
"@types/ip": "^1.1.3",
"@types/node": "^22.14.1",
"bcryptjs": "^3.0.2",
"chalk": "^5.4.1",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-validator": "^7.2.1",
"ioredis": "^5.6.0",
"ip": "^2.0.1",
"mastra": "^0.5.0",
"mongoose": "^8.12.2",
"pino": "^9.6.0",
"react-native-live-audio-stream": "^1.1.1",
"sequelize": "^6.37.6",
"sequelize-typescript": "^2.1.6",
"socket.io": "^4.8.1",
"tsx": "^4.19.3",
"ulid": "^2.4.0",
"wav-headers": "^1.0.1",
"winston": "^3.17.0",
"zod": "^3.24.3"
},
"scripts": {
"prepare": "husky install",
"lint": "eslint app/**/*.js",
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "bun --watch run app/server.ts",
"start:node-dev": "nodemon --exec npx ts-node app/server.ts"
},
"lint-staged": {
"app/**/*.ts": [
"eslint --fix",
"prettier --write"
]
}
}