-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.07 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
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "library-app",
"version": "0.0.1",
"description": "library app created for learning pruposes",
"main": "index.js",
"scripts": {
"start": "DEBUG=app,app:* nodemon app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"url": "https://github.com/msilvag1/library-app"
},
"author": "Manuel Silva",
"license": "MIT",
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"chalk": "^4.0.0",
"cookie-parser": "^1.4.5",
"debug": "^4.1.1",
"ejs": "^3.1.3",
"express": "^4.17.1",
"express-session": "^1.17.1",
"mongodb": "^3.5.7",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"pug": "^2.0.4",
"xml2js": "^0.4.23"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"nodemon": "^2.0.4"
},
"nodemonConfig": {
"restartable": "rs",
"ignore": [
"node_modules/**/node_modules"
],
"delay": "0",
"env": {
"PORT": 3000
}
}
}