forked from kinngh/shopify-nextjs-prisma-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.96 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "shopify-nextjs-prisma-app",
"version": "0.0.1",
"type": "module",
"author": {
"name": "Harshdeep Singh Hura",
"url": "https://harshdeephura.com"
},
"repository": {
"type": "git",
"url": "https://github.com/kinngh/shopify-nextjs-prisma-app.git"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"pretty": "prettier --write ./",
"update": "ncu -u",
"update:url": "node _developer/updateDashboard.js",
"ngrok:auth": "ngrok authtoken <auth-token-goes-here>",
"ngrok": "ngrok http 3000",
"-----> Shopify <-----": "",
"shopify": "shopify",
"s:e:create": "shopify app generate extension",
"s:e:deploy": "shopify app deploy",
"-----> Database <-----": "",
"pg:create": "mkdir database; pg_ctl -D database init",
"pg:start": "pg_ctl -D database start",
"pg:stop": "pg_ctl -D database stop",
"-----> Prisma <-----": "",
"prisma": "npx prisma",
"prisma:push": "npx prisma db push",
"prisma:pull": "npx prisma db pull",
"-----> Reserved Scripts <-----": "",
"prepare": "npx prisma generate"
},
"dependencies": {
"@prisma/client": "^4.11.0",
"@shopify/app-bridge": "^3.7.3",
"@shopify/app-bridge-react": "^3.7.3",
"@shopify/app-bridge-utils": "^3.5.1",
"@shopify/polaris": "^10.32.0",
"@shopify/shopify-api": "^6.2.0",
"cryptr": "^6.1.0",
"graphql": "^16.6.0",
"next": "13.2.3",
"next-api-middleware": "^2.0.1",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@shopify/app": "^3.44.1",
"@shopify/cli": "^3.44.1",
"@shopify/cli-kit": "^3.44.1",
"dotenv": "^16.0.3",
"ngrok": "^4.3.3",
"npm-check-updates": "^16.7.10",
"prettier": "^2.8.4",
"prisma": "^4.11.0"
},
"overrides": {
"@shopify/cli-kit": {
"react": "18.2.0"
},
"@shopify/cli": {
"react": "18.2.0"
},
"@shopify/app": {
"react": "18.2.0"
}
}
}