2018-03-13 20:25:39 +00:00
|
|
|
{
|
|
|
|
"//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",
|
2018-03-21 18:08:46 +00:00
|
|
|
"name": "hello-express",
|
2018-03-13 20:25:39 +00:00
|
|
|
"version": "0.0.1",
|
2018-03-21 18:08:46 +00:00
|
|
|
"description": "A simple Node app built on Express, instantly up and running.",
|
2018-03-13 20:25:39 +00:00
|
|
|
"main": "server.js",
|
|
|
|
"scripts": {
|
|
|
|
"start": "node server.js"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2018-03-21 18:08:46 +00:00
|
|
|
"express": "^4.16.3"
|
2018-03-13 20:25:39 +00:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": "8.x"
|
|
|
|
},
|
|
|
|
"repository": {
|
2018-03-21 18:08:46 +00:00
|
|
|
"url": "https://glitch.com/edit/#!/hello-express"
|
2018-03-13 20:25:39 +00:00
|
|
|
},
|
|
|
|
"license": "MIT",
|
|
|
|
"keywords": [
|
|
|
|
"node",
|
|
|
|
"glitch",
|
|
|
|
"express"
|
|
|
|
]
|
2018-03-21 18:08:46 +00:00
|
|
|
}
|