generated from hatchways/express-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.13 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
{
"name": "mail-sender",
"version": "0.0.0",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"start": "node ./server/bin/www",
"predev": "mongod --dbpath=./database &",
"dev": "nodemon ./bin/www",
"debug": "nodemon --inspect ./bin/www",
"test": "NODE_ENV=test ./node_modules/.bin/mocha --exit --timeout 30000",
"stop": "mongo admin --eval \"db.shutdownServer()\"",
"deploy": "npm run build --prefix ./client && gcloud app deploy"
},
"dependencies": {
"@google-cloud/pubsub": "^1.7.2",
"bcryptjs": "^2.4.3",
"bull": "^3.13.0",
"cookie-parser": "~1.4.4",
"csv-parser": "^2.3.2",
"debug": "~2.6.9",
"dotenv": "^8.0.0",
"draftjs-to-html": "^0.9.1",
"express": "~4.16.1",
"fs": "0.0.1-security",
"googleapis": "^48.0.0",
"handlebars": "^4.7.6",
"http-errors": "~1.6.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.6",
"morgan": "~1.9.1",
"multer": "^1.4.2",
"nodemailer": "^6.4.6",
"nodemon": "^1.19.1",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"redis": "^3.0.2",
"socket.io": "^2.3.0",
"validator": "^13.0.0"
}
}