This repository has been archived on 2024-02-11. You can view files and clone it, but cannot push or open issues or pull requests.
Files
restful-api-task/package.json
2021-10-15 02:00:40 +03:00

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"
}
}