-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1021 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1021 Bytes
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
{
"name": "letschat-server",
"version": "1.0.0",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "tsx watch server.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:verbose": "jest --verbose"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@supabase/supabase-js": "^2.91.0",
"dotenv": "^17.2.3",
"express": "^4.18.2",
"letschat-types": "git+ssh://git@github.com:pdotsani/letschat-types.git#main",
"morgan": "^1.10.1",
"ollama": "^0.6.3"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.21",
"@types/jest": "^30.0.0",
"@types/morgan": "^1.9.10",
"@types/node": "^20.10.6",
"@types/supertest": "^6.0.3",
"cors": "^2.8.5",
"jest": "^30.2.0",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}