express-template/package.json

34 lines
1.0 KiB
JSON

{
"name": "express-template",
"description": "Centralizer and library of API connections to multiple databases.",
"version": "3.0.0",
"license": "ISC",
"scripts": {
"tsc": "yarn",
"dev": "ts-node-dev src/app.ts",
"build": "NODE_ENV=development&& tsc",
"start": "NODE_ENV=development&& node dist/app.js",
"build:prod": "NODE_ENV=production && tsc",
"start:prod": "NODE_ENV=production && node dist/app.js",
"lint": "eslint . --ext .js,.ts"
},
"dependencies": {
"config": "^3.3.11",
"cors": "^2.8.5",
"express": "^4.18.2",
"nanoid": "3.3.7",
"v-functions": "git+https://2bdcc0300e0ed5ac01f9dcd51368f7ac74fdb85a@git.via-asesores.com/libraries/v-functions.git"
},
"devDependencies": {
"@types/config": "^3.3.3",
"@types/express": "^4.17.21",
"@types/node": "^20.11.20",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.0.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}