-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.61 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "midterm_template",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@fullcalendar/daygrid": "^5.4.0",
"@fullcalendar/interaction": "^5.4.0",
"@fullcalendar/react": "^5.4.0",
"@kunukn/react-collapse": "^2.2.9",
"@sendgrid/mail": "^7.4.0",
"bcryptjs": "^2.4.3",
"bootstrap": "^4.5.3",
"chatrooms": "^0.0.7",
"cloudinary": "^1.23.0",
"concurrently": "^5.3.0",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"express-fileupload": "^1.2.0",
"icons": "^1.0.0",
"jsonwebtoken": "^8.5.1",
"mg.chatroom": "^0.0.1",
"mongodb": "^3.6.2",
"mongoose": "^5.10.9",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"react": "^17.0.1",
"react-bootstrap": "^1.4.0",
"react-icons": "^3.11.0",
"react-router-dom": "^5.2.0",
"socket-io": "^1.0.0",
"socket.io": "^3.0.3",
"validator": "^13.1.17"
},
"engines": {
"node": ">= 14.0.0"
},
"devDependencies": {
"dotenv": "^8.2.0",
"husky": "^4.3.0",
"nodemon": "^2.0.6",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "cd client && yarn run start",
"dev": "concurrently --kill-others-on-fail \"yarn run server\" \"yarn run client\"",
"heroku-postbuild": "cd client && yarn && yarn run build",
"prettify": "prettier '*/**/*.js' '*/**/*.jsx' '*/**/*.html' '*/**/*.css' --write"
},
"repository": "[email protected]:wyncode/c39_armed_forces.git"
}