-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 890 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
{
"name": "ai-chatbot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/backend/server.js",
"dev": "npx nodemon src/backend/server.ts",
"postbuild": "xcopy /E /I /Y src\\frontend dist\\frontend && tsc -p tsconfig.frontend.json",
"build": "tsc && tsc -p tsconfig.frontend.json",
"deploy": "npm run build && firebase deploy"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^22.0.2",
"@types/node-fetch": "^2.6.11",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"@types/express": "^4.17.21",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"firebase-admin": "^12.3.0",
"firebase-functions": "^5.0.1",
"openai": "^4.53.2",
"undici": "^6.19.5"
}
}