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.",
|
2020-01-04 18:27:28 +00:00
|
|
|
"main": "nodeapp/app.js",
|
2018-03-13 20:25:39 +00:00
|
|
|
"scripts": {
|
2020-01-04 18:27:28 +00:00
|
|
|
"start": "node nodeapp/app.js"
|
2018-03-13 20:25:39 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-04-11 18:25:20 +00:00
|
|
|
"dotenv": "^8.2.0",
|
2019-12-20 23:48:12 +00:00
|
|
|
"express": "^4.17.1",
|
2020-04-11 18:25:20 +00:00
|
|
|
"sequelize": "*",
|
2020-04-17 23:08:47 +00:00
|
|
|
"sqlite3": "*",
|
|
|
|
"twit": "^2.2.11"
|
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 18:32:01 +00:00
|
|
|
"url": "https://github.com/JayWll/houseplant-hackathon"
|
2018-03-13 20:25:39 +00:00
|
|
|
},
|
|
|
|
"license": "MIT",
|
|
|
|
"keywords": [
|
|
|
|
"node",
|
|
|
|
"glitch",
|
|
|
|
"express"
|
|
|
|
]
|
2020-01-04 18:27:28 +00:00
|
|
|
}
|