forked from stevensblueprint/backend_challenge_spring_2024
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
22 lines (22 loc) · 766 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "backend_challenge_spring_2024",
"version": "1.0.0",
"description": "As part of the challenge you will have to fork this repository and add your backend application in the forked version of this repository. You can find more information on how to fork a repository [here](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/fork-a-repo).",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "node index.js",
"dev": "nodemon index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.19.2",
"mongodb": "^6.5.0",
"mongoose": "^8.2.4"
},
"keywords": [],
"devDependencies": {
"nodemon": "^3.1.0"
}
}