Files
houseplant-hackathon/package.json
T

30 lines
731 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",
2019-12-20 23:36:03 +00:00
"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": "nodeapp/app.js",
2018-03-13 20:25:39 +00:00
"scripts": {
"start": "node nodeapp/app.js"
2018-03-13 20:25:39 +00:00
},
"dependencies": {
2019-12-20 23:48:12 +00:00
"express": "^4.17.1",
2019-12-21 04:41:59 +00:00
"sqlite3": "*",
"sequelize": "*"
2018-03-13 20:25:39 +00:00
},
"engines": {
2019-12-20 21:36:14 +00:00
"node": "10.x"
2018-03-13 20:25:39 +00:00
},
"repository": {
2020-01-04 11:32:01 -07:00
"url": "https://github.com/JayWll/houseplant-hackathon"
2018-03-13 20:25:39 +00:00
},
"license": "MIT",
"keywords": [
"node",
"glitch",
"express"
]
}