forked from bluebeel/nextjs-shopify-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.25 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
{
"name": "@bluebeela/nextjs-shopify-auth",
"version": "1.0.2",
"license": "MIT",
"description": "Middleware to authenticate a Nextjs application with Shopify",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"test": "jest",
"build": "tsc",
"lint": "eslint",
"prepublishOnly": "yarn run clean && yarn run build"
},
"publishConfig": {
"access": "public"
},
"author": "Bluebeela",
"repository": {
"type": "git",
"url": "git+https://github.com/bluebeel/nextjs-shopify-auth.git"
},
"bugs": {
"url": "https://github.com/bluebeel/nextjs-shopify-auth/issues"
},
"homepage": "https://github.com/bluebeel/nextjs-shopify-auth/blob/main/README.md",
"dependencies": {
"@shopify/network": "^1.5.0",
"cookie": "^0.4.1",
"next": "^10.0.3",
"nonce": "^1.0.4",
"nookies": "^2.5.0",
"tslib": "^1.9.3"
},
"devDependencies": {
"@shopify/jest-dom-mocks": "^2.9.1",
"@types/cookie": "^0.4.0",
"@types/node": "^14.14.10",
"babel-preset-shopify": "^21.0.0",
"eslint": "^7.8.1",
"jest": "^26.4.2",
"node-fetch": "^2.6.0",
"typescript": "^4.0.2"
},
"sideEffects": false,
"files": [
"dist/*",
"!tsconfig.tsbuildinfo"
]
}