-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 744 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 744 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
{
"name": "programa-vmc",
"version": "1.0.0",
"description": "Programa Vida y Ministerio Cristianos - Sistema para generar y gestionar programas de reuniones con integración a JW.org",
"author": "",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"build": "tsc -p .",
"start": "node dist/server.js"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.19.2",
"uuid": "^9.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.11.30",
"@types/uuid": "^9.0.7",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18.0.0"
}
}