-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 898 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 898 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
{
"name": "web-dev-project-backend",
"type": "module",
"version": "1.0.0",
"description": "Node.js HTTP Web server for our Web Dev project",
"main": "index.js",
"scripts": {
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TylerSchaefer4/web-dev-project-backend.git"
},
"keywords": [
"Node",
"REST",
"Server",
"HTTP"
],
"author": "Tyler Schaefer and Victor Sunderland",
"license": "ISC",
"bugs": {
"url": "https://github.com/TylerSchaefer4/web-dev-project-backend/issues"
},
"homepage": "https://github.com/TylerSchaefer4/web-dev-project-backend#readme",
"dependencies": {
"axios": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"mongoose": "^7.4.3"
}
}