-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
45 lines (45 loc) · 1.29 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
44
45
{
"name": "soen341",
"version": "1.0.0",
"description": "Implement a simplified version of Stack Overflow (Q&A website).",
"main": "server.js",
"scripts": {
"test": "mocha ./test",
"start": "node server",
"server": "nodemon server",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/lyubageorgieva/SOEN341.git"
},
"author": "Allan Paul Lopez, Matthieu Pourrat, Argiro Skokos, Nicholas Werugia, Kenny Dao, Rudy Zoghaib, Shawn Gorman, Lyuba Georgieva.",
"license": "MIT",
"bugs": {
"url": "https://github.com/lyubageorgieva/SOEN341/issues"
},
"homepage": "https://github.com/lyubageorgieva/SOEN341#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"config": "^3.3.6",
"express": "^4.17.1",
"express-validator": "^6.13.0",
"gravatar": "^1.8.2",
"jsonwebtoken": "^8.5.1",
"body-parser": "^1.15.2",
"mocha": "^9.1.3",
"mongodb": "^4.2.0",
"mongoose": "^6.0.13",
"react-helmet": "^6.1.0",
"request": "^2.88.2",
"should": "^13.2.3",
"react-icons": "^4.3.1",
"supertest": "^6.1.6"
},
"devDependencies": {
"concurrently": "^6.3.0",
"nodemon": "^2.0.13",
"supertest": "^6.1.6"
}
}