-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
36 lines (36 loc) · 843 Bytes
/
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
{
"name": "webprogramming-react",
"version": "1.0.0",
"description": "Ecommerce demo app using node and react.",
"main": "server.js",
"scripts": {
"dev": "nodemon server.js",
"start": "node server.js",
"heroku-postbuild": "npm install --prefix client && npm run build --prefix client"
},
"keywords": [
"node",
"react",
"mongodb"
],
"author": "Yiliyasi Aboduaini",
"license": "MIT",
"dependencies": {
"babel-eslint": "^8.2.5",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"connect-flash": "^0.1.1",
"eslint": "^5.0.1",
"express": "^4.16.3",
"express-flash": "^0.0.2",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.10",
"mongoose": "^5.1.7",
"morgan": "^1.9.0",
"nodemon": "^1.17.5",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"prettier-eslint": "^8.8.2",
"prop-types": "^15.7.2"
}
}