forked from smakosh/rest-api-boilerplate-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 826 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
{
"name": "boilerplate-rest-api",
"version": "1.0.0",
"description": "rest api boilerplate",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"database": "~/mongo/bin/mongod --dbpath ~/mongo-data"
},
"author": "smakosh",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"crypto-js": "^3.1.9-1",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.10",
"mongodb": "^3.1.1",
"mongoose": "^5.3.12",
"mongoose-unique-validator": "^2.0.2",
"validator": "^10.4.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"nodemon": "^1.18.6"
}
}