forked from adrien2p/medusa-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.06 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "medusa-plugin-auth-xponential",
"version": "1.0.6",
"description": "Social authentication plugin for medusajs 1.x",
"keywords": [
"social",
"auth",
"auth0",
"google",
"google+",
"facebook",
"twitter",
"linkedin",
"github",
"microsoft",
"passportjs",
"oauth2",
"medusa",
"medusajs",
"e-commerce",
"authentication",
"medusa-plugins",
"medusa-plugin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/xponential-asia/medusa-xpo-auth-plugins.git"
},
"author": "Xponential",
"files": [
"api",
"utils",
"core",
"types",
"loaders",
"auth-strategies"
],
"types": "types/index.d.ts",
"scripts": {
"build": "run-s clean build:tsc",
"build:tsc:watch": "tsc --build ./tsconfig.json --watch",
"build:tsc": "tsc -p tsconfig.json",
"clean": "rimraf api services utils types loaders auth-strategies coverage tsconfig.tsbuildinfo",
"test": "jest",
"test:ci": "yarn add -D @medusajs/medusa@${MEDUSAJS_VERSION} && yarn run test",
"prepare": "yarn build"
},
"peerDependencies": {
"passport": "^0.6.0",
"typeorm": "*"
},
"devDependencies": {
"@medusajs/medusa": "1.20.0",
"@medusajs/types": "1.11.13",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@types/express": "^4.17.17",
"@types/jest": "^29.1.2",
"@types/passport-auth0": "^1.0.9",
"@types/passport-azure-ad": "^4.3.5",
"@types/passport-facebook": "^3.0.3",
"@types/passport-google-oauth2": "^0.1.8",
"@types/passport-linkedin-oauth2": "^1.5.6",
"@types/passport-oauth2": "^1.4.15",
"jest": "^29.1.2",
"npm-run-all": "^4.1.5",
"passport": "^0.6.0",
"semantic-release": "^24.2.0",
"ts-jest": "^29.2.5",
"ts-node": "^8.6.2",
"typeorm": "^0.3.15",
"typescript": "^5.7.2"
},
"dependencies": {
"@superfaceai/passport-twitter-oauth2": "^1.1.0",
"@types/node": "^18.11.10",
"cors": "^2.8.5",
"express": "^4.18.1",
"firebase-admin": "^11.4.1",
"jsonwebtoken": "^8.5.1",
"passport-auth0": "^1.4.3",
"passport-azure-ad": "^4.3.5",
"passport-facebook": "^3.0.0",
"passport-firebase-jwt": "^1.2.1",
"passport-google-oauth2": "^0.2.0",
"passport-linkedin-oauth2": "^2.0.0",
"passport-oauth2": "^1.7.0",
"tldjs": "^2.3.1"
},
"jest": {
"preset": "ts-jest",
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"testTimeout": 100000,
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transformIgnorePatterns": [
"/node_modules/"
],
"collectCoverageFrom": [
"**/*.(t|j)s",
"!**/__*__/*.(t|j)s"
],
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"coverageDirectory": "<rootDir>/../coverage",
"testEnvironment": "node",
"setupFilesAfterEnv": [
"<rootDir>/../setup-tests.js"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}