-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 978 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 978 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
32
33
34
{
"name": "assembleo-api-gateway",
"version": "1.0.0",
"description": "Gateway centralizador para todos os microserviços do sistema Assembleo",
"type": "module",
"main": "src/index.ts",
"scripts": {
"dev": "tsx src/server.ts",
"dev:worker": "wrangler dev",
"dev:node": "tsx src/index.ts",
"build": "tsc",
"start": "node dist/server.js",
"lint": "echo 'Lint not configured'",
"typecheck": "tsc --noEmit",
"deploy": "wrangler deploy",
"pm2:start": "pm2 start ecosystem.config.js",
"pm2:stop": "pm2 stop assembleo-gateway",
"pm2:restart": "pm2 restart assembleo-gateway"
},
"devDependencies": {
"@types/node": "^20.11.0",
"esbuild": "^0.21.4",
"npm-run-all2": "^6.2.0",
"tsx": "^4.7.0",
"typescript": "^5.0.0",
"wrangler": "^3.59.0",
"@cloudflare/workers-types": "^4.20240701.0"
},
"dependencies": {
"hono": "^4.9.8",
"@hono/node-server": "^1.12.0",
"dotenv": "^16.4.5"
}
}