forked from twang1905/CS-546-Final-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.32 KB
/
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
40
41
42
43
{
"name": "cs-546-final-project",
"version": "1.0.0",
"description": "Developed by David Cruz, Eric Park, Kimberly Tsang, and Thomas Wang for S23-CS546-WS: Web Programming I for Patrick Hill at Stevens Institute of Technology",
"main": "app.js",
"type": "module",
"keywords": [
"cs-546",
"Patrick",
"Hill"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js",
"seed": "node seed.js",
"clearData": "node clearData.js",
"dockerbuild": "docker build -t xxmistacruzxx/bis .",
"dockerstart": "docker run -p 3000:3000 --env-file .env.local xxmistacruzxx/bis"
},
"repository": {
"type": "git",
"url": "git+https://github.com/twang1905/CS-546-Final-Project.git"
},
"author": "David Cruz, Eric Park, Kimberly Tsang, & Thomas Wang",
"license": "ISC",
"bugs": {
"url": "https://github.com/twang1905/CS-546-Final-Project/issues"
},
"homepage": "https://github.com/twang1905/CS-546-Final-Project#readme",
"dependencies": {
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"dotenv-flow": "^3.3.0",
"express": "^4.18.2",
"express-handlebars": "^7.0.5",
"express-session": "^1.17.3",
"handlebars": "^4.7.7",
"mongodb": "^5.2.0",
"multer": "^1.4.5-lts.1",
"serverless-http": "^3.2.0",
"xss": "^1.0.14"
}
}