This commit is contained in:
2021-10-15 02:00:40 +03:00
parent 74316481f1
commit ade92e0493
15 changed files with 884 additions and 0 deletions

31
package.json Normal file
View File

@@ -0,0 +1,31 @@
{
"name": "restfulapi",
"version": "0.0.1",
"description": "NodeJS application having a few ReSTFul endpoints",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "ssh://git@git.amok.space:8822/yevhen/restful-api-task.git"
},
"keywords": [
"ReST API",
"HTTP",
"CRUD",
"Todolist",
"NodeJS"
],
"author": "Yevhen theAmok",
"license": "ISC",
"dependencies": {
"express": "^4.17.1",
"yup": "^0.32.11"
},
"devDependencies": {
"nodemon": "^2.0.13"
}
}