-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.06 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"ngrok": "ngrok http 3050 --response-header-add \"Access-Control-Allow-Origin: *\" --host-header=rewrite",
"dev": "concurrently \"npx tsc --watch\" \"nodemon --exitcrash dist/index.js\"",
"ngrokfixed": "ngrok http --domain=f82f850f17ee-443370837071186036.ngrok-free.app 3050",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.20",
"@types/node": "^20.8.10",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"eventsource": "^2.0.2",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"replicate": "^0.25.0",
"stream": "^0.0.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
},
"devDependencies": {
"@types/cors": "^2.8.15",
"@types/eventsource": "^1.1.15",
"concurrently": "^8.2.2",
"nodemon": "^3.0.1"
}
}