-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 788 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 788 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
{
"name": "vmdev-web",
"version": "1.0.0",
"private": true,
"description": "Portfolio de vmDev con frontend estatico y API de contacto opcional.",
"main": "server/index.js",
"scripts": {
"start": "node server/index.js",
"dev": "node --watch server/index.js",
"check": "node --check main.js && node --check server/index.js",
"lint": "npm run check",
"test": "node scripts/smoke-contact.js",
"typecheck": "node -e \"console.log('typecheck: not required for this stack')\"",
"build": "node -e \"console.log('build: static frontend, no compile step')\""
},
"engines": {
"node": ">=20"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"helmet": "^8.0.0",
"pg": "^8.13.1"
}
}