Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dacanizares/806d98764f599be83e5f995410248ad5 to your computer and use it in GitHub Desktop.
Save dacanizares/806d98764f599be83e5f995410248ad5 to your computer and use it in GitHub Desktop.
Packages.json example for deploying on Azure using Kudu
{
"name": "PROJECTNAME",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"json-server": "^0.14.2"
},
"engines": {"node": "^10.14.1"},
"devDependencies": {},
"scripts": {
"start": "json-server --watch db.json --port 3001"
},
"repository": {
"type": "git",
"url": "GIT URL"
},
"author": "",
"license": "Copyright 2019"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment