-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.25 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
{
"name": "tyche",
"version": "0.1.0",
"description": "Chatbot para las redes sociales de la Psic. Psicoa. Ana García",
"main": "build/server.js",
"type": "module",
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"prettier": "3.3.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tsx": "^4.17.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0"
},
"scripts": {
"type-check": "tsc",
"prettier": "npx prettier . --write",
"dev": "npx prettier . --write && NODE_ENV=development tsx watch src/server",
"test": "echo \"Warning: no test specified\"",
"build": "npx prettier . --check && npm run test && rimraf build && tsc --noEmit false && tsc-alias && npm run serve",
"serve": "node build/server.js"
},
"keywords": [
"chatbot",
"ollama",
"express.js"
],
"author": "Jonathan Muñoz Lucas <[email protected]>",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"helmet": "^7.1.0",
"ollama": "^0.5.8"
}
}