-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "express-jwt-mongo-boilerplate",
"version": "0.0.1",
"description": "API server",
"main": "server.js",
"repository": "https://github.com/dev-z/Express-JWT-MongoDB-Mocha-boilerplate.git",
"author": "<ishtiaque.zafar92@gmail.com>",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"humps": "^2.0.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"mongoose": "^5.7.7",
"swagger-ui-express": "^4.1.2"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.18.2",
"mocha": "^6.2.2",
"mongodb-memory-server": "^6.0.1",
"nodemon": "^1.19.4"
},
"scripts": {
"start": "node server.js",
"start-dev": "nodemon server.js",
"test": "NODE_ENV=test JWT_SECRET=test mocha --timeout 20000 --exit"
}
}