-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·43 lines (43 loc) · 1.17 KB
/
package.json
File metadata and controls
executable file
·43 lines (43 loc) · 1.17 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
{
"name": "mern-auth",
"version": "1.0.0",
"description": "Mern authentification",
"main": "server.js",
"scripts": {
"client-install": "npm install --prefix client",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "JohnDavis",
"license": "MIT",
"dependencies": {
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"concurrently": "^5.1.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.1.6",
"express-validator": "^6.2.0",
"http-status-codes": "^1.4.0",
"jsonwebtoken": "^8.5.1",
"mailgun-js": "^0.22.0",
"method-override": "^3.0.0",
"mongoose": "^5.8.9",
"nexmo": "^2.6.0",
"nodemailer": "^6.4.2",
"nodemon": "^1.19.4",
"notenv": "^2.0.3",
"otplib": "^11.0.1",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"path": "^0.12.7"
},
"engines": {
"node": "10.16.3"
}
}