forked from sourcefuse/loopback4-microservice-catalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 3.03 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
77
78
79
80
81
82
83
84
85
86
{
"name": "@sourceloop/auth-multitenant-example",
"version": "2.0.0-alpha.18",
"description": "This is a sample application for sandbox testing of auth microservice components.",
"private": true,
"keywords": [
"loopback-application",
"loopback"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "npm run clean && lb-tsc",
"build:watch": "lb-tsc --watch",
"lint": "npm run prettier:check && npm run eslint",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"prettier:cli": "lb-prettier \"**/*.ts\" \"**/*.js\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"eslint": "lb-eslint --report-unused-disable-directives .",
"eslint:fix": "npm run eslint -- --fix",
"openapi-spec": "npm run build && node ./dist/openapi-spec",
"pretest": "npm run clean && npm run build",
"test": "lb-mocha --allow-console-logs \"dist/__tests__\"",
"posttest": "npm run lint",
"test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js && npm run posttest",
"docker:build": "docker build -t auth-multitenant-example .",
"docker:run": "docker run -p 3000:3000 -d auth-multitenant-example",
"migrate": "node ./dist/migrate",
"prestart": "npm run build",
"start": "node -r source-map-support/register .",
"clean": "lb-clean dist *.tsbuildinfo .eslintcache",
"db:migrate": "./node_modules/db-migrate/bin/db-migrate up --config './migrations/database.json'",
"db:migrate:down": "./node_modules/db-migrate/bin/db-migrate down --config './migrations/database.json'",
"db:migrate:reset": "./node_modules/db-migrate/bin/db-migrate reset --config './migrations/database.json'"
},
"repository": {
"type": "git"
},
"author": "",
"license": "",
"files": [
"README.md",
"dist",
"src",
"!*/__tests__"
],
"dependencies": {
"@loopback/boot": "^3.1.0",
"@loopback/context": "^3.13.0",
"@loopback/core": "^2.12.0",
"@loopback/openapi-v3": "^5.1.0",
"@loopback/repository": "^3.2.0",
"@loopback/rest": "^9.0.0",
"@loopback/rest-explorer": "^3.0.3",
"@loopback/service-proxy": "^3.0.3",
"@sourceloop/authentication-service": "^1.0.0-alpha.43",
"@sourceloop/core": "^1.0.0-alpha.26",
"bcrypt": "^5.0.0",
"casbin": "^5.2.1",
"db-migrate": "^0.11.11",
"db-migrate-pg": "^1.2.2",
"dotenv": "^8.2.0",
"dotenv-extended": "^2.8.0",
"loopback-connector-kv-redis": "^3.0.3",
"loopback-connector-postgresql": "^3.9.1",
"loopback4-authentication": "^4.1.0",
"loopback4-authorization": "^3.2.0",
"loopback4-helmet": "^2.0.0",
"loopback4-ratelimiter": "^2.0.0",
"tslib": "^2.0.0"
},
"devDependencies": {
"@loopback/build": "^6.2.6",
"@loopback/eslint-config": "^10.0.2",
"@loopback/testlab": "^3.2.8",
"@types/bcrypt": "^3.0.0",
"@types/node": "^10.17.44",
"eslint": "^7.12.1",
"source-map-support": "^0.5.19",
"typescript": "~4.0.5"
}
}