Last active
June 3, 2018 11:28
-
-
Save awadhawan18/27dec8fda266867c2a254804306da39e to your computer and use it in GitHub Desktop.
glitch
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
{ | |
"//1": "describes your app and its dependencies", | |
"//2": "https://docs.npmjs.com/files/package.json", | |
"//3": "updating this file will download and update your packages", | |
"name": "my-glitch-app", | |
"version": "0.0.1", | |
"description": "What am I about?", | |
"scripts": { | |
"start": "node server.js" | |
}, | |
"dependencies": { | |
"express": "^4.16.3" | |
}, | |
"engines": { | |
"node": "9.x" | |
}, | |
"repository": { | |
"url": "https://glitch.com/edit/#!/my-glitch-app" | |
}, | |
"license": "MIT", | |
"keywords": [ | |
"node", | |
"glitch", | |
"express" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment