-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.29 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.29 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "rest-api-authentication",
"version": "1.0.0",
"description": "This is to demonstrate how to authenticate a user to use rest api endpoints",
"main": "index.js",
"scripts": {
"precommit": "yarn lint",
"dev": "nodemon --delay 250ms --exec NODE_ENV=development babel-node -- ./src/server/index.js",
"lint": "./node_modules/.bin/eslint --ignore-path .gitignore --ignore-pattern internals/scripts",
"lint:fix": "yarn lint -- --fix",
"lint:watch": "yarn lint -- --watch",
"test": "cross-env NODE_ENV=test nyc --reporter=html --reporter=text mocha --timeout 20000 --recursive src/tests",
"test:unit": "cross-env NODE_ENV=test mocha src/api/tests/unit",
"test:integration": "cross-env NODE_ENV=test mocha --timeout 20000 src/tests/integration",
"test:watch": "cross-env NODE_ENV=test mocha --watch src/api/tests/unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/melitus/rest-api-authentication.git"
},
"keywords": [
"ES6",
"ES7",
"ExpressJs",
"MongoDB",
"Airbnb",
"Eslint",
"Nodemon",
"Babel"
],
"author": "Aroh Sunday",
"license": "ISC",
"bugs": {
"url": "https://github.com/melitus/rest-api-authentication/issues"
},
"homepage": "https://github.com/melitus/rest-api-authentication#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"husky": "^0.14.3",
"mocha": "^5.2.0",
"nodemon": "^1.18.3"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"convict": "^4.3.2",
"cors": "^2.8.4",
"cross-env": "^5.2.0",
"dotenv": "^6.0.0",
"dotenv-safe": "^6.0.0",
"express": "^4.16.3",
"express-validation": "^1.0.2",
"helmet": "^3.13.0",
"http-status": "^1.2.0",
"joi": "^13.6.0",
"jwt-simple": "^0.5.1",
"lodash": "^4.17.10",
"method-override": "^3.0.0",
"moment-timezone": "^0.5.21",
"mongoose": "^5.2.7",
"morgan": "^1.9.0",
"passport": "^0.4.0",
"passport-http-bearer": "^1.0.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pm2": "^3.0.3",
"uuid": "^3.3.2"
}
}