-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 857 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
{
"name": "bookstore",
"version": "1.0.0",
"description": "Book store App",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js",
"start:dev": "nodemon app.js",
"lint": "node_modules/.bin/esw client/controllers",
"lint:watch": "npm run lint -- --watch"
},
"dependencies": {
"body-parser": "^1.18.2",
"cookie-session": "^2.0.0-beta.3",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-session": "^1.17.1",
"mongoose": "^5.0.15",
"passport": "^0.4.0",
"passport-google-oauth20": "^1.0.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^6.0.1"
},
"author": "Somandra Singh Rathore",
"license": "ISC",
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-angular": "^0.5.0",
"eslint-plugin-angular": "^3.3.0",
"eslint-watch": "^3.1.4"
}
}