-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.64 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
60
61
{
"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",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@sendgrid/mail": "^7.4.0",
"axios": "^0.21.0",
"bcrypt": "^5.0.0",
"bcryptjs": "^2.4.3",
"bootstrap": "^4.5.3",
"cloudinary": "^1.23.0",
"concurrently": "^5.3.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-fileupload": "^1.2.0",
"express-pino-logger": "^5.0.0",
"faker": "^5.1.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongodb": "^3.6.2",
"mongoose": "^5.10.15",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"react-bootstrap": "^1.4.0",
"react-router-dom": "^5.2.0",
"sweetalert": "^2.1.2",
"twilio": "^3.52.0",
"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",
"db:reset": "node server/db/seeds",
"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"
}
}