forked from CSWilder02/Term-4-Group-2---Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.75 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.75 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "dv200_group2_-_open_window_developer_forum",
"version": "1.0.0",
"description": "a question-and-answer website for programmers.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cd client && npm run build",
"install-client": "cd client && npm install",
"heroku-postbuild": "npm run install-client && npm run build",
"start": "node index.js",
"client": "cd client && npm start",
"dev": "concurrently -n 'index,client' -c 'red,green' \"nodemon index.js\" \"npm run client\""
},
"heroku": {
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/CSWilder02/Term-4-Group-2---Project.git"
},
"keywords": [
"question-and-answer",
"forum",
"qna",
"developer",
"ask",
"debug"
],
"author": "Bladen Lehnberg, CS Wilder, Eddie Sosera, Marine Du Plessis",
"license": "ISC",
"bugs": {
"url": "https://github.com/CSWilder02/Term-4-Group-2---Project/issues"
},
"homepage": "https://github.com/CSWilder02/Term-4-Group-2---Project#readme",
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@mui/joy": "^5.0.0-beta.15",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"concurrently": "^8.2.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"gridfs-stream": "^1.1.1",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"moment": "^2.29.4",
"mongodb": "^6.1.0",
"mongoose": "^7.5.2",
"multer": "^1.4.5-lts.1",
"nodemon": "^3.0.1"
}
}