31 lines
755 B
JSON
31 lines
755 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": "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",
|
|
"scripts": {
|
|
"start": "node nodeapp/app.js"
|
|
},
|
|
"dependencies": {
|
|
"dotenv": "^8.2.0",
|
|
"express": "^4.17.1",
|
|
"sequelize": "*",
|
|
"sqlite3": "*"
|
|
},
|
|
"engines": {
|
|
"node": "10.x"
|
|
},
|
|
"repository": {
|
|
"url": "https://github.com/JayWll/houseplant-hackathon"
|
|
},
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"node",
|
|
"glitch",
|
|
"express"
|
|
]
|
|
}
|