28 lines
642 B
JSON
28 lines
642 B
JSON
{
|
|
"name": "@landvex/communications",
|
|
"version": "0.1.0",
|
|
"description": "LandveX Communications Module — Email, SMS, Push notifications",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "ts-node src/index.ts",
|
|
"start": "node dist/index.js",
|
|
"test": "jest"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.18.2",
|
|
"cors": "^2.8.5",
|
|
"helmet": "^7.0.0",
|
|
"dotenv": "^16.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.17",
|
|
"@types/cors": "^2.8.13",
|
|
"typescript": "^5.1.0",
|
|
"ts-node": "^10.9.0",
|
|
"jest": "^29.5.0",
|
|
"@types/jest": "^29.5.0"
|
|
}
|
|
}
|