-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.02 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
{
"name": "my-chronicle",
"version": "1.0.0",
"description": "App that helps people with chronic, undiagnosed illnesses capture and communicate their health stories",
"main": "server.js",
"scripts": {
"start": "cross-env NODE_ENV=production node server",
"dev": "cross-env NODE_ENV=development nodemon server",
"postinstall": "node ./scripts/post-install.js"
},
"author": "Ashleigh Halverstadt",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"cloudinary": "^1.32.0",
"connect-flash": "^0.1.1",
"connect-mongo": "^4.6.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^6.0.6",
"express-session": "^1.17.1",
"fs-extra": "^9.0.1",
"method-override": "^3.0.0",
"moment": "^2.27.0",
"mongoose": "^6.6.5",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"cross-env": "^7.0.2",
"nodemon": "^2.0.4"
}
}