master
Matt Huntington 3 years ago
parent ce29910553
commit e46ad52524

1018
package-lock.json generated

File diff suppressed because it is too large Load Diff

@ -0,0 +1,18 @@
{
"name": "new-trello",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://gitea.artisan.al/mahuntington/new-trello.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.18.2"
}
}

@ -0,0 +1,6 @@
const express = require('express')
const app = express()
app.listen(3003, ()=>{
console.log('listening');
})
Loading…
Cancel
Save