forked from redochka/nextjs-shopify-app-no-custom-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 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
{
"name": "nextjs-shopify-app-no-custom-server",
"version": "1.0.0",
"private": true,
"scripts": {
"lint": "next lint --fix",
"dev": "next dev",
"tunnel": "cloudflared tunnel --config .cloudflared/config.yml run",
"debug": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"prepare": "husky install",
"pre-commit": "next lint"
},
"dependencies": {
"@apollo/client": "^3.7.1",
"@shopify/admin-graphql-api-utilities": "^2.0.1",
"@shopify/app-bridge": "^3.4.3",
"@shopify/app-bridge-react": "^3.4.3",
"@shopify/app-bridge-utils": "^3.4.3",
"@shopify/polaris": "^10.10.1",
"@shopify/shopify-api": "^5.2.0",
"axios": "^1.1.3",
"axios-retry": "^3.3.1",
"graphql": "^16.6.0",
"ioredis": "^5.2.4",
"next": "^13.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"eslint": "8.26.0",
"eslint-config-next": "13.0.2",
"husky": "^8.0.1",
"@types/ioredis": "^4.28.10"
}
}