29 lines
587 B
JSON
29 lines
587 B
JSON
{
|
|
"//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?",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"start": "node server.js"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.16.2"
|
|
},
|
|
"engines": {
|
|
"node": "8.x"
|
|
},
|
|
"repository": {
|
|
"url": "https://glitch.com/edit/#!/welcome-project"
|
|
},
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"node",
|
|
"glitch",
|
|
"express"
|
|
]
|
|
}
|