-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1009 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"type": "module",
"name": "chews-wisely-node-server-app",
"version": "1.0.0",
"description": "Node.js HTTP Web server back-end for Chews Wisely web app",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alex-w-99/Chews-Wisely-Node-Server-App.git",
},
"keywords": [
"Node",
"REST",
"Server",
"HTTP"
],
"author": "Mohammed Amer, Melanie Becker, Alex Wilcox",
"license": "ISC",
"bugs": {
"url": "https://github.com/alex-w-99/Chews-Wisely-Node-Server-App/issues"
},
"homepage": "https://github.com/alex-w-99/Chews-Wisely-Node-Server-App#readme",
"dependencies": {
"@mui/icons-material": "^5.11.16",
"axios": "^1.3.5",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-session": "^1.17.3",
"mongoose": "^7.0.4",
"nodemon": "^2.0.22"
},
"devDependencies": {
"bson": "^5.2.0"
}
}