-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 860 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": "booksAPI",
"version": "1.0.0",
"description": "",
"author": "Grzegorz Pawlik",
"main": "index.js",
"scripts": {
"start": "nodemon --watch src --exec babel-node -- src/index.js",
"load": "babel-node load/init.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"license": "ISC",
"dependencies": {
"axios": "^0.15.1",
"bcrypt": "^0.8.7",
"body-parser": "^1.15.2",
"express": "^4.14.0",
"jsonwebtoken": "^7.1.9",
"lodash": "^4.16.4",
"mongodb": "^2.2.24",
"mongoose": "^4.6.3",
"morgan": "^1.7.0",
"shortid": "^2.2.6",
"validator": "^6.1.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.16.0",
"eslint": "^3.17.1",
"nodemon": "^1.11.0"
}
}