-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
50 lines (50 loc) · 1.25 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
48
49
50
{
"name": "book-trading-club",
"version": "1.0.0",
"description": "Book-Trading-Club Freecode camp exercise",
"private": true,
"scripts": {
"start": "node api/index.js",
"dev": "nodemon api/index.js"
},
"engines": {
"node": "^8.0.0"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"express": "~4.15.5",
"jsonwebtoken": "^8.0.1",
"mongodb": "^2.2.31",
"mongoose": "^4.13.17",
"morgan": "^1.9.1",
"url-parse": "^1.4.3"
},
"devDependencies": {
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^3.2.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "beta",
"eslint": "^4.4.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mubaidr/Book-Trading-Club.git"
},
"keywords": [
"freecodecamp",
"nodejs"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/mubaidr/Book-Trading-Club/issues"
},
"homepage": "https://github.com/mubaidr/Book-Trading-Club#readme"
}