-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.84 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
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
76
{
"name": "permissions-api",
"version": "0.0.1",
"description": "Permissions ES6 RESTful Express API",
"main": "dist",
"scripts": {
"dev": "NODE_ENV=dev nodemon --ignore keys.json -w src --exec \"babel-node src/index.js\"",
"build": "babel src/ --out-dir dist",
"serve": "NODE_ENV=prod node dist/index.js",
"test": "NODE_ENV=test jest --verbose --runInBand --forceExit"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module"
},
"env": {
"node": true
},
"rules": {
"no-console": 0,
"no-unused-vars": 1
}
},
"repository": {
"type": "git",
"url": ""
},
"author": "Alejandro Canosa",
"license": "MIT",
"dependencies": {
"amqplib": "^0.8.0",
"axios": "^0.21.0",
"body-parser": "^1.13.3",
"compression": "^1.5.2",
"config": "^3.3.2",
"cors": "^2.7.1",
"dotenv": "^10.0.0",
"express": "^4.13.3",
"express-async-errors": "^3.1.1",
"express-session": "^1.17.1",
"helmet": "^4.1.1",
"joi": "^17.3.0",
"jwt-decode": "^3.1.2",
"keycloak-admin": "^1.14.17",
"keycloak-connect": "^11.0.2",
"mongodb": "^3.6.2",
"mongoose": "^5.10.10",
"morgan": "^1.8.0",
"node-jose": "^2.0.0",
"request": "^2.88.2",
"resource-router-middleware": "^0.6.0",
"swagger-ui-express": "^4.1.6",
"winston": "^2.4.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/node": "^7.14.7",
"@babel/preset-env": "^7.14.7",
"eslint": "^3.1.1",
"jest": "^27.0.5",
"jsonwebtoken": "^8.5.1",
"jwk-to-pem": "^2.0.5",
"keycloak-request-token": "^0.1.0",
"nodemon": "^1.9.2",
"pm2": "^5.1.0",
"supertest": "^6.1.3"
},
"bugs": {
"url": ""
},
"homepage": ""
}