-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 969 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
{
"name": "local-library-express",
"version": "1.0.0",
"description": "MDN Express tutorial",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ehomrich/local-library-express.git"
},
"author": "Émerson Pinto Homrich",
"license": "ISC",
"bugs": {
"url": "https://github.com/ehomrich/local-library-express/issues"
},
"private": true,
"homepage": "https://github.com/ehomrich/local-library-express#readme",
"dependencies": {
"async": "^2.6.1",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"express": "~4.16.0",
"express-validator": "^5.3.0",
"http-errors": "~1.6.2",
"moment": "^2.22.2",
"mongoose": "^5.2.5",
"morgan": "~1.9.0",
"pug": "2.0.0-beta11"
},
"devDependencies": {
"eslint": "^5.2.0",
"nodemon": "^1.18.3"
},
"scripts": {
"start": "node ./bin/www",
"devstart": "nodemon ./bin/www",
"lint": "eslint '**/*.js' --fix"
}
}