Created
April 3, 2019 20:49
-
-
Save dacanizares/806d98764f599be83e5f995410248ad5 to your computer and use it in GitHub Desktop.
Packages.json example for deploying on Azure using Kudu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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