forked from firefliesai/fireflies-backend-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.29 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
50
{
"name": "fireflies-backend-test",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node --import=tsx --watch src/server.ts",
"build": "tsc -p tsconfig.json",
"seed": "node --import=tsx src/scripts/database.seed.ts",
"test": "vitest",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"compression": "^1.7.5",
"dotenv": "^16.4.5",
"express": "^5.0.1",
"express-rate-limit": "^7.4.1",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.7.1",
"morgan": "^1.10.0",
"openai": "^4.77.0",
"redis": "^4.6.12",
"reflect-metadata": "^0.2.2",
"throw-http-errors": "^4.0.1",
"typedi": "^0.10.0",
"winston": "^3.16.0",
"zod": "^3.24.1",
"tsx": "^4.19.1",
"zod-express-middleware": "^1.4.0"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.9",
"@types/node": "^22.7.5",
"@types/redis": "^4.0.11",
"tsc-alias": "^1.8.10",
"vitest": "^2.1.8"
}
}