-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 870 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
{
"name": "ai-chat-backend",
"version": "1.0.0",
"description": "AI chat application for a job application challenge",
"main": "src/aiServer.ts",
"scripts": {
"dev": "nodemon --watch './**/.ts' --exec 'node --trace-warnings --experimental-specifier-resolution=node --loader ts-node/esm' src/aiServer.js",
"dev:node": "nodemon --exec ts-node src/aiServer.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [],
"author": "Marcos Moura",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"openai": "^4.5.0"
},
"devDependencies": {
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/node": "^20.5.9",
"msw": "^1.3.0",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vitest": "^0.34.4"
}
}