-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 844 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 844 Bytes
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": "deep-chat-server-express",
"version": "0.0.1",
"description": "Example server for the deep-chat component",
"main": "app.js",
"scripts": {
"start": "npx nodemon",
"build": "tsc && mkdir -p build/prompts && cp -r src/prompts/* build/prompts/",
"dev": "ts-node src/app.ts",
"deploy": "npm run build && pm2 restart ecosystem.config.js"
},
"author": "OvidijusParsiunas",
"license": "ISC",
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.18.3",
"form-data": "^4.0.0",
"multer": "^1.4.5-lts.1",
"request": "^2.88.2"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.11",
"@types/request": "^2.48.12",
"cors": "^2.8.5",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
}
}