-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.45 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
{
"name": "ask-ginetta-ollama-proxy",
"version": "1.0.0",
"description": "Proxy to Ollama hosted models and inference server.",
"main": "app.js",
"author": "Davy Braun <davy.braun@ginetta.net>",
"license": "UNLICENSED",
"private": true,
"scripts": {
"build": "tsc",
"start": "nodemon ./dist/server.js",
"dev": "nodemon --exec ts-node src/server.ts",
"lint": "eslint . --ext .ts",
"test": "jest --passWithNoTests --detectOpenHandles --forceExit",
"test:watch": "jest --watchAll --passWithNoTests --detectOpenHandles --forceExit"
},
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"http-errors": "^2.0.0",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"supertest": "^7.0.0",
"winston": "^3.13.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.0.2",
"@eslint/js": "^9.1.1",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^7.7.1",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"globals": "^15.0.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}