dvdbot-old/package.json

29 lines
661 B
JSON
Raw Normal View History

2018-03-13 21:25:39 +01: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",
"name": "hello-express",
2018-03-13 21:25:39 +01:00
"version": "0.0.1",
"description": "A simple Node app built on Express, instantly up and running.",
2018-03-13 21:25:39 +01:00
"main": "server.js",
"scripts": {
"start": "node server.js"
},
"dependencies": {
"express": "^4.17.1",
"mpp-client-xt": "^1.2.0"
2018-03-13 21:25:39 +01:00
},
"engines": {
2020-02-19 23:18:49 +01:00
"node": "12.x"
2018-03-13 21:25:39 +01:00
},
"repository": {
"url": "https://glitch.com/edit/#!/hello-express"
2018-03-13 21:25:39 +01:00
},
"license": "MIT",
"keywords": [
"node",
"glitch",
"express"
]
}