-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.38 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
{
"name": "grouper",
"version": "1.0.0",
"description": "The revolutionary new group matching application for University students looking to achieve high grades!",
"main": "index.js",
"scripts": {
"start": "node index.js",
"build": "cd client && npm run build",
"install-client": "cd client && npm install",
"build-client": "npm run install-client && npm run build",
"start-watch": "nodemon index.js",
"dev": "concurrently \"npm run start-watch\" \"cd client && npm start\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/GiorgioBaz/grouper.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GiorgioBaz/grouper/issues"
},
"homepage": "https://github.com/GiorgioBaz/grouper#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.1",
"cloudinary": "^1.28.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^12.0.3",
"express": "^4.17.2",
"express-session": "^1.17.2",
"mongoose": "^6.1.7",
"nodemailer": "^6.7.2",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"react-scripts": "^5.0.1"
},
"devDependencies": {
"concurrently": "^7.0.0",
"nodemon": "^2.0.15"
}
}