-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.59 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.59 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "samu-ai-triage",
"version": "1.0.0",
"description": "AI-powered medical triage system for SAMU emergency calls",
"main": "dist/server.js",
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc && tsc-alias",
"start": "node dist/server.js",
"test": "vitest run --config vitest.unit.config.ts",
"test:unit": "vitest run --config vitest.unit.config.ts",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:watch": "vitest --config vitest.unit.config.ts",
"test:coverage": "vitest run --config vitest.unit.config.ts --coverage",
"test:ui": "vitest --ui",
"test:calibration": "tsx test-framework/automated-testing.ts",
"test:architecture": "tsx scripts/test-architecture.ts",
"health:check": "tsx scripts/check-external-apis.ts",
"secrets:test": "tsx scripts/test-secrets-simple.ts",
"lint": "eslint . --ext .ts,.tsx --max-warnings 0",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,json,md}\"",
"type-check": "tsc --noEmit",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:migrate:prod": "prisma migrate deploy",
"db:seed": "tsx prisma/seed.ts",
"db:studio": "prisma studio",
"db:reset": "prisma migrate reset",
"docker:build": "docker build -t samu-ai-triage .",
"docker:up": "docker-compose up --build",
"docker:down": "docker-compose down",
"prepare": "husky install",
"validate": "npm run type-check && npm run lint && npm run format:check && npm run test:unit"
},
"keywords": [
"ai",
"medical",
"triage",
"samu",
"emergency",
"mastra",
"healthcare"
],
"author": "SAMU AI Team",
"license": "MIT",
"dependencies": {
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.1.0",
"@fastify/formbody": "^8.0.2",
"@fastify/multipart": "^9.2.1",
"@fastify/rate-limit": "^10.3.0",
"@fastify/sensible": "^6.0.3",
"@fastify/static": "^8.2.0",
"@fastify/swagger": "^9.5.2",
"@fastify/swagger-ui": "^5.2.3",
"@fastify/websocket": "^11.2.0",
"@google-cloud/secret-manager": "^6.1.0",
"@google-cloud/speech": "^7.2.1",
"@google-cloud/storage": "^7.17.2",
"@google-cloud/vertexai": "^1.10.0",
"@google/generative-ai": "^0.24.1",
"@prisma/client": "^5.22.0",
"axios": "^1.12.2",
"bcrypt": "^6.0.0",
"bullmq": "^5.61.0",
"dotenv": "^16.4.5",
"fastify": "^5.6.1",
"form-data": "^4.0.4",
"hono": "^4.6.0",
"ioredis": "^5.8.1",
"jsonwebtoken": "^9.0.2",
"uuid": "^13.0.0",
"winston": "^3.14.0",
"ws": "^8.18.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@faker-js/faker": "^10.1.0",
"@types/bcrypt": "^6.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.10.0",
"@types/uuid": "^11.0.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitest/coverage-v8": "^2.1.0",
"@vitest/ui": "^2.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"husky": "^9.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.3.0",
"prisma": "^5.22.0",
"tsc-alias": "^1.8.10",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}