-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
46 lines (46 loc) · 1.25 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
{
"name": "mern-auth",
"version": "1.0.0",
"description": "Login/Registration authentication App",
"main": "server.js",
"scripts": {
"client-install": "npm install --prefix client",
"start":"npx nodemon --exec npx babel-node server.js",
"heroku-postbuild": "cd client && npm install && npm install && npm run build",
"server": "npx nodemon --exec npx babel-node server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.19.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"classnames": "^2.2.6",
"concurrently": "^5.0.2",
"express": "^4.17.1",
"is-empty": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^2.2.0",
"mongoose": "^5.8.2",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"uninstall": "0.0.0",
"validator": "^12.1.0"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/node": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"nodemon": "^2.0.2"
},
"engines":{
"node":"12.13.1"
}
}