-
- Downloads
Initialize project structure with Express API, task management service, and testing setup
parents
No related branches found
No related tags found
Showing
- .eslintrc.json 15 additions, 0 deletions.eslintrc.json
- .gitignore 4 additions, 0 deletions.gitignore
- README.md 211 additions, 0 deletionsREADME.md
- jest.config.js 5 additions, 0 deletionsjest.config.js
- package-lock.json 0 additions, 0 deletionspackage-lock.json
- package.json 21 additions, 0 deletionspackage.json
- src/index.js 39 additions, 0 deletionssrc/index.js
- src/taskService.js 15 additions, 0 deletionssrc/taskService.js
- tasks.json 7 additions, 0 deletionstasks.json
- tests/integration/app.test.js 26 additions, 0 deletionstests/integration/app.test.js
- tests/unit/todoService.test.js 12 additions, 0 deletionstests/unit/todoService.test.js
.eslintrc.json
0 → 100644
.gitignore
0 → 100644
README.md
0 → 100644
jest.config.js
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"name": "polytech-todo-api", | ||
"version": "1.0.0", | ||
"description": "TP Polytech Marseille 2025 – FISA & FISE", | ||
"main": "src/index.js", | ||
"scripts": { | ||
"start": "node src/index.js", | ||
"lint": "eslint src/**/*.js", | ||
"test": "jest" | ||
}, | ||
"dependencies": { | ||
"express": "^4.18.2" | ||
}, | ||
"devDependencies": { | ||
"eslint": "^8.57.0", | ||
"jest": "^29.7.0", | ||
"supertest": "^6.3.4" | ||
} | ||
} | ||
\ No newline at end of file |
src/index.js
0 → 100644
src/taskService.js
0 → 100644
tasks.json
0 → 100644
tests/integration/app.test.js
0 → 100644
tests/unit/todoService.test.js
0 → 100644
Please register or sign in to comment