-
Notifications
You must be signed in to change notification settings - Fork 194
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.02 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.02 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
{
"name": "authentication-microapi",
"version": "1.0.0",
"description": "A single-/multi-tenant authentication microservice",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=test jest --verbose",
"test:watch": "cross-env NODE_ENV=test jest --watch --verbose",
"test:ci": "cross-env NODE_ENV=test jest --coverage --verbose && shx cat ./coverage/lcov.info",
"test:cover": "cross-env NODE_ENV=test jest --coverage --verbose",
"lint": "eslint \"src/**/*.js\"",
"lint:fix": "eslint --fix \"src/**/*.js\"",
"build": "babel src --out-dir dist --delete-dir-on-start --ignore '**/*.test.js'",
"dev": "cross-env DEBUG=log NODE_ENV=development nodemon --exec babel-node ./src/server.js",
"start": "cross-env DEBUG=log NODE_ENV=production node ./dist/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/microapidev/auth-microapi.git"
},
"keywords": [
"authentication",
"microservice",
"microAPI"
],
"author": "MicroAPI - HNGi7",
"license": "ISC",
"bugs": {
"url": "https://github.com/microapidev/auth-microapi/issues"
},
"homepage": "https://github.com/microapidev/auth-microapi#readme",
"dependencies": {
"axios": "^0.19.2",
"bcrypt": "^5.0.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^5.3.3",
"express-validator": "^6.6.1",
"googleapis": "^58.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.27",
"oauth": "^0.9.15",
"swagger-jsdoc": "^4.0.0",
"swagger-ui-express": "^4.1.4"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/node": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"babel-jest": "^26.0.1",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"shx": "^0.3.2",
"supertest": "^4.0.2"
}
}