-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1008 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
37
38
39
{
"name": "yelpcamp",
"version": "1.0.0",
"description": "",
"main": "app.js",
"dependencies": {
"body-parser": "^1.18.2",
"cloudinary": "^1.16.0",
"compression": "^1.7.4",
"connect-mongo": "^3.2.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.16.2",
"express-async-errors": "^3.1.1",
"express-session": "^1.15.6",
"helmet": "^3.21.2",
"method-override": "^3.0.0",
"mongoose": "^5.8.6",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^6.0.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js",
"dev": "nodemon app.js",
"seed": "node seed.js",
"lint": "eslint ./",
"pretty": "prettier --config ./.prettierrc --ignore-path ./.prettierignore --write **"
},
"author": "adithya",
"license": "ISC"
}