-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 910 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
{
"name": "todolist-v1",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon app.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
"dotenv": "^10.0.0",
"ejs": "^2.7.4",
"eslint-plugin-ejs": "^0.0.2",
"express": "^4.16.3",
"express-session": "^1.17.2",
"lodash": "^4.17.20",
"mongoose": "^5.11.15",
"mongoose-encryption": "^2.1.0",
"mongoose-findorcreate": "^3.0.0",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^6.1.0"
},
"devDependencies": {
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.23.4"
}
}