-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.49 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.49 KB
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
{
"name": "NovaticsNodeExpressMongoDB",
"version": "1.0.0",
"main": "index.js",
"license": "MPL-2.0",
"scripts": {
"start": "nodemon --exec babel-node src/index.js",
"build": "babel src --out-dir dist src/public --source-maps inline --copy-files",
"serve": "node dist/index.js"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"@babel/runtime": "^7.4.5",
"@sentry/node": "^4.6.5",
"babel-preset-env": "^1.7.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"express-async-handler": "^1.1.4",
"express-handlebars": "^3.1.0",
"express-rate-limit": "^3.3.2",
"express-validation": "^1.0.2",
"handlebars-helper-repeat": "^2.0.0",
"helmet": "^3.15.0",
"joi": "^14.3.0",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.3.13",
"mongoose-paginate": "^5.0.3",
"nodemailer": "^6.3.0",
"nodemailer-express-handlebars": "^3.0.0",
"nodemailer-sendgrid-transport": "^0.2.0",
"nodemon": "^1.18.10",
"uuid": "^3.3.2",
"youch": "^2.0.10",
"youch-terminal": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"babel-plugin-dotenv": "^0.1.1",
"pm2": "^3.5.0"
}
}