-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
36 lines (36 loc) · 1 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
{
"name": "shopify-nextjs-toolbox",
"version": "2.0.0",
"description": "A set of server side and client side utilities for interacting with Shopify's App Bridge Session Tokens with NextJs",
"main": "lib/index.js",
"scripts": {
"prepublish": "babel src --out-dir lib",
"build": "babel src --out-dir lib",
"test": "jest"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.12.1",
"axios": "^0.21.0",
"jsonwebtoken": "^8.5.1",
"querystring": "^0.2.1"
},
"peerDependencies": {
"@shopify/app-bridge-react": "^2.0.x",
"@shopify/app-bridge-utils": "^2.0.x",
"next": "^10.0.0",
"react": "^17.0.1"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@babel/preset-react": "^7.12.1",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"node-mocks-http": "^1.10.1"
}
}