30 lines
796 B
JSON
30 lines
796 B
JSON
{
|
|
"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.2.0",
|
|
"winston": "^3.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^2.0.2"
|
|
}
|
|
}
|