-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.08 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
{
"name": "ebay_fav_items",
"version": "1.0.0",
"description": "eBay Favorite Item Search app which allows you to search items from ebay and then favorite them and also allowing you to login",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon app.js",
"start": "nodemon --inspect app.js",
"heroku-postbuild": "cd client/ && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"author": "muhammad usman",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.1",
"connect-pg-simple": "^8.0.0",
"cookie-parser": "^1.4.6",
"cookie-session": "^2.0.0",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"isomorphic-fetch": "^2.2.1",
"method-override": "^2.3.8",
"morgan": "^1.8.1",
"nodemon": "^1.15.1",
"passport": "^0.3.2",
"passport-cookie": "^1.0.9",
"passport-http": "^0.3.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"pg-promise": "^11.0.2"
}
}