-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.13 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
{
"name": "shopify-nextjs-app-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"shopify": "shopify",
"deploy": "shopify app deploy",
"setup": "drizzle-kit generate:pg",
"migrate": "node ./migrate.mjs",
"tunnel": "cloudflared tunnel --config .cloudflared/config.yml --url localhost:3000 run <tunnel-name>"
},
"dependencies": {
"@shopify/polaris": "^13.0.0",
"@shopify/shopify-api": "^9.7.1",
"@shopify/shopify-app-session-storage": "^2.1.3",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.30.7",
"jose": "^5.2.4",
"next": "14.1.4",
"nextjs-toploader": "^1.6.11",
"pg": "^8.11.5",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@shopify/app": "^3.58.2",
"@shopify/app-bridge-types": "^0.0.11",
"@shopify/cli": "^3.58.2",
"@types/node": "^20",
"@types/pg": "^8.11.5",
"@types/react": "^18",
"@types/react-dom": "^18",
"drizzle-kit": "^0.20.14",
"eslint": "^8",
"eslint-config-next": "14.1.4",
"typescript": "^5"
}
}