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": "app.js",
|
2018-03-13 20:25:39 +00:00
|
|
|
"scripts": {
|
2019-12-20 23:36:03 +00:00
|
|
|
"start": "node 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 03:50:08 +00:00
|
|
|
"sqlite3": "^4.1.1",
|
|
|
|
"sequelize": "^6.0.0"
|
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": {
|
2018-03-21 18:08:46 +00:00
|
|
|
"url": "https://glitch.com/edit/#!/hello-express"
|
2018-03-13 20:25:39 +00:00
|
|
|
},
|
|
|
|
"license": "MIT",
|
|
|
|
"keywords": [
|
|
|
|
"node",
|
|
|
|
"glitch",
|
|
|
|
"express"
|
|
|
|
]
|
2019-12-20 22:12:17 +00:00
|
|
|
}
|