houseplant-hackathon/package.json
Glitch (hello-express) 343cf657a0 🏚🚵 Checkpoint
./package.json:7435365/45
./server.js:7435365/2177
2019-12-20 21:36:14 +00:00

30 lines
672 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": "hello-express",
"version": "0.0.1",
"description": "A simple Node app built on Express, instantly up and running.",
"main": "server.js",
"scripts": {
"start": "node server.js"
},
"dependencies": {
"express": "^4.16.4",
"sqlite3": "*",
"sequelize": "*"
},
"engines": {
"node": "10.x"
},
"repository": {
"url": "https://glitch.com/edit/#!/hello-express"
},
"license": "MIT",
"keywords": [
"node",
"glitch",
"express"
]
}