initial commit

This commit is contained in:
Brian Emilius
2020-05-17 22:00:53 +02:00
commit a60a37f441
57 changed files with 902 additions and 0 deletions

29
package.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "general-purpose-rest-api",
"version": "0.0.0",
"description": "A general purpose RESTful web-API written with Express and MySQL",
"main": "index.js",
"scripts": {
"start": "node bin/www",
"dev": "nodemon bin/www",
"test": "echo \"Error: no test specified\" && exit 1",
"docs": "cd ./docs && npx insomnia-documenter --config ./rest-api.json"
},
"author": "Brian Emilius <be@rts.dk>",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-formidable": "^1.2.0",
"express-winston": "^4.0.2",
"jsonwebtoken": "^8.5.1",
"sequelize": "^5.21.3",
"sqlite3": "^4.1.1",
"winston": "^3.2.1"
},
"devDependencies": {
"nodemon": "^2.0.2"
}
}