houseplant-hackathon/package.json

29 lines
717 B
JSON
Raw Normal View History

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",
"name": "jasonsplant",
"version": "1.0.0",
"description": "A Node app to collect moisture data from the plant I have on my desk in the office, and graph the results.",
"main": "app.js",
2018-03-13 20:25:39 +00:00
"scripts": {
"start": "node app.js"
2018-03-13 20:25:39 +00:00
},
"dependencies": {
"express": "^4.16.4",
"sqlite": "^3.0.3",
"sequelize": "^6.0.0"
2018-03-13 20:25:39 +00:00
},
"engines": {
"node": "10.x"
2018-03-13 20:25:39 +00:00
},
"repository": {
"url": "https://glitch.com/edit/#!/hello-express"
2018-03-13 20:25:39 +00:00
},
"license": "MIT",
"keywords": [
"node",
"glitch",
"express"
]
}