-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.15 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
{
"name": "loopback-supertokens",
"version": "1.1.0",
"description": "LoopBack extensions for authentication and authorization using SuperTokens",
"keywords": [
"LoopBack",
"Authentication",
"auth",
"authentication",
"authorisation",
"nodejs",
"supertokens",
"jwt",
"refresh tokens"
],
"repository": {
"type": "git",
"url": "https://github.com/adrienrn/loopback-supertokens.git"
},
"license": "MIT",
"author": "Hussard <adrien.ricartnoblet@gmail.com>",
"main": "dist/index.js",
"files": [
"/dist",
"!*/__tests__"
],
"scripts": {
"build": "tsc",
"lint": "eslint .",
"release": "semantic-release",
"test": "ts-mocha -p tsconfig.json src/**/*.test.ts"
},
"dependencies": {
"axios": "^1.3.6"
},
"devDependencies": {
"@loopback/authentication": "^9.0.10",
"@loopback/authorization": "^0.12.10",
"@loopback/boot": "^5.0.10",
"@loopback/core": "^4.0.10",
"@loopback/repository": "^5.1.5",
"@loopback/rest": "^12.0.10",
"@loopback/security": "^0.8.10",
"@loopback/service-proxy": "^5.0.10",
"@loopback/testlab": "^5.0.10",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/expect": "^24.3.0",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^8.39.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"semantic-release": "^21.0.2",
"supertokens-node": "^13.6.0",
"ts-mocha": "^10.0.0",
"typescript": "^5.0.4"
},
"peerDependencies": {
"@loopback/authentication": "^9.0.4",
"@loopback/authorization": "^0.12.6",
"@loopback/boot": "^5.0.4",
"@loopback/core": "^4.0.10",
"@loopback/repository": "^5.0.4",
"@loopback/rest": "^12.0.4",
"@loopback/security": "^0.8.10",
"@loopback/testlab": "^5.0.4",
"supertokens-node": "^13.5.0"
},
"publishConfig": {
"access": "public"
}
}