32 lines
620 B
JSON
32 lines
620 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|