-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.28 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.28 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@loopback/example-passport-login",
"description": "An example to demonstrate authentication with passport strategies",
"version": "7.0.12",
"keywords": [
"loopback",
"LoopBack",
"example",
"tutorial",
"passport",
"authentication"
],
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "IBM Corp. and LoopBack contributors",
"copyright.owner": "IBM Corp. and LoopBack contributors",
"repository": {
"type": "git",
"url": "https://github.com/loopbackio/loopback-next.git",
"directory": "examples/passport-login"
},
"engines": {
"node": "20 || 22 || 24"
},
"scripts": {
"build": "lb-tsc",
"build:watch": "lb-tsc --watch",
"clean": "lb-clean dist *.tsbuildinfo package",
"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",
"pretest": "npm run rebuild",
"test": "lb-mocha \"dist/__tests__/**/*.js\"",
"test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js && npm run posttest",
"premigrate": "npm run build ",
"migrate": "node ./dist/migrate",
"rebuild": "npm run clean && npm run build",
"prestart": "npm run rebuild",
"start": "node ."
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@loopback/authentication": "^12.0.12",
"@loopback/authentication-passport": "^8.0.12",
"@loopback/boot": "^8.0.11",
"@loopback/core": "^7.0.10",
"@loopback/mock-oauth2-provider": "^0.10.10",
"@loopback/repository": "^8.0.10",
"@loopback/rest": "^15.0.11",
"@loopback/rest-crud": "^0.19.11",
"@loopback/rest-explorer": "^8.0.11",
"@loopback/security": "^0.12.11",
"@loopback/service-proxy": "^8.0.10",
"@types/jsonwebtoken": "9.0.10",
"@types/lodash": "^4.17.24",
"@types/passport": "^1.0.17",
"@types/passport-facebook": "^3.0.4",
"@types/passport-google-oauth": "^1.0.45",
"@types/passport-google-oauth2": "^0.1.10",
"@types/passport-http": "^0.3.11",
"@types/passport-local": "^1.0.38",
"@types/passport-oauth2": "^1.8.0",
"@types/passport-twitter": "1.0.40",
"body-parser": "^2.2.2",
"client-sessions": "^0.8.0",
"debug": "^4.4.3",
"express": "^4.22.1",
"express-session": "^1.19.0",
"lodash": "^4.17.23",
"passport": "^0.5.3",
"passport-facebook": "^3.0.0",
"passport-google": "^0.3.0",
"passport-google-oauth2": "^0.2.0",
"passport-http": "^0.3.0",
"passport-local": "^1.0.0",
"passport-oauth2": "^1.8.0",
"passport-twitter": "1.0.4",
"path": "^0.12.7",
"pug": "^3.0.4",
"tslib": "^2.8.1"
},
"devDependencies": {
"@loopback/build": "^12.0.10",
"@loopback/eslint-config": "^16.0.1",
"@loopback/http-caching-proxy": "^7.0.10",
"@loopback/testlab": "^8.0.10",
"@types/express": "^4.17.25",
"@types/lodash": "^4.17.24",
"@types/node": "^16.18.126",
"axios": "^1.13.6",
"eslint": "^8.57.1",
"lodash": "^4.17.23",
"typescript": "~6.0.2"
}
}