-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 961 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 961 Bytes
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
{
"name": "shopify-multipass-otp-sso",
"version": "1.0.0",
"description": "Shopify Multipass SSO with SMS OTP Authentication - Secure single sign-on solution for Shopify stores",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"format": "prettier --write ."
},
"keywords": [
"shopify",
"multipass",
"sso",
"otp",
"authentication",
"express",
"nodejs",
"fast2sms",
"single-sign-on"
],
"author": {
"name": "Krishna patel",
"email": "krishnapatel767@gmail.com"
},
"license": "UNLICENSED",
"homepage": "https://github.com/Krishna-ajmera-infotech/shopify-multipass-otp-sso#readme",
"dependencies": {
"dotenv": "^17.2.2",
"express": "^5.1.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"nodemon": "^3.0.1",
"prettier": "^3.0.3"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
}
}