-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 989 Bytes
/
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
{
"name": "ai-maestro-api",
"version": "1.0.0",
"description": "REST api to control llm docker containers",
"main": "web-api.js",
"scripts": {
"build": "tsc",
"start": "node dist/main.js",
"dev": "tsc-watch --onSuccess \"node dist/main.js\"",
"lint": "eslint --fix \"src/**/*.ts\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Joe Meyer",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"mariadb": "^3.3.0",
"redis": "^4.6.15"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"tsc-watch": "^6.2.0",
"typescript": "^5.4.5"
}
}