Skip to content

Instantly share code, notes, and snippets.

@lobot
Created December 16, 2021 00:25
Show Gist options
  • Save lobot/cbd81dc9134c39f1e452c76b9a350d22 to your computer and use it in GitHub Desktop.
Save lobot/cbd81dc9134c39f1e452c76b9a350d22 to your computer and use it in GitHub Desktop.
webhook-basics-package-json
{
"name": "webhook-basics",
"version": "1.0.0",
"description": "A sample node project, demonstrating the use of Lob Webhooks for emailing and marketing.",
"main": "./src/index.js",
"scripts": {
"start-dev": "babel-node ./src/index.js",
"dev": "nodemon --exec npm run start-dev",
"start": "npm run build && node ./build/index.js",
"build": "npm run clean && npm run build-babel",
"clean": "npx rimraf /F /Q build",
"build-babel": "babel src --out-dir build --source-maps inline --copy-files",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lob-node-examples/lobwebhook.git"
},
"keywords": [
"Lob",
"Email",
"Marketing"
],
"author": "Sid Maestre",
"license": "ISC",
"bugs": {
"url": "https://github.com/lob/lob-node-examples/webhook-basics/issues"
},
"homepage": "https://github.com/lob/lob-node-examples/webhook-basics#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"hbs": "^4.2.0",
"lob": "^6.5.2",
"mongoose": "^6.1.1",
"path": "^0.12.7"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/node": "^7.16.5",
"@babel/preset-env": "^7.16.5"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment