-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1023 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1023 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "multi-container-project",
"version": "1.0.0",
"description": "A minimal, unauthenticated REST API for managing a todo list, built with Node.js, Express, Mongoose and MongoDB.",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blackbox24/Multi-Container-Application.git"
},
"author": "Hope Decardi-Nelson",
"license": "MIT",
"bugs": {
"url": "https://github.com/blackbox24/Multi-Container-Application/issues"
},
"homepage": "https://github.com/blackbox24/Multi-Container-Application#readme",
"dependencies": {
"cors": "^2.8.6",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"mongodb": "^7.0.0",
"mongoose": "^9.1.6",
"zod": "^4.3.6"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.0.18",
"nodemon": "^3.1.11",
"supertest": "^7.2.2",
"vitest": "^4.0.18"
}
}