-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.53 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
{
"name": "nodejsapi",
"version": "1.0.14",
"description": "",
"main": "index.js",
"homepage": "https://quiccasa.herokuapp.com/",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start-dev": "nodemon --ignore client/ -w '.' -e 'js,css' src/server.js",
"start": "node src/server.js",
"pub": "git add . && git commit -m \"deploying to heroku\" && git push && yarn deploy",
"pubdev": "yarn pub && heroku logs --tail",
"deploy": "git push heroku master",
"check-unused-dependencies": "depcheck",
"list-deadfiles": "deadfile ./src/server.js --dir src",
"refresh-client_DO_NOT_USE__CLIENT_WILL_COPY": "cp -a ../quiccasa-client/build client/"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cloudinary": "^1.15.0",
"concurrently": "^6.4.0",
"cookie-parser": "^1.4.6",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"datauri": "^2.0.0",
"dotenv": "^8.1.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-session": "^1.17.2",
"express-validator": "^6.2.0",
"jade": "^1.11.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.5",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"passport": "^0.4.0",
"passport-google-oauth2": "^0.2.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"passport-oauth2-middleware": "^1.0.3",
"path": "^0.12.7"
},
"devDependencies": {
"nodemon": "^1.19.3"
}
}