All checks were successful
Auditor / audit (pull_request) Successful in 51s
- Add tags:[] to all seed todo objects - POST /todos accepts optional tags array (defaults to []) - GET /todos?tag=<value> filters to todos whose tags include that value (case-sensitive) Closes #14
13 lines
213 B
JSON
13 lines
213 B
JSON
{
|
|
"name": "todo-app",
|
|
"version": "0.1.0",
|
|
"description": "Minimal Express TODO API",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "node index.js"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.18.2"
|
|
}
|
|
}
|