-
-
Notifications
You must be signed in to change notification settings - Fork 121
/
Copy pathpackage.json
61 lines (61 loc) · 1.92 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
{
"name": "shopify-nextjs-prisma-app",
"version": "2025.01.07",
"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",
"-----> Tunnel <-----": "",
"ngrok:auth": "ngrok authtoken <auth-token-goes-here>",
"ngrok": "ngrok http 3000",
"cloudflare": "cloudflared tunnel --url localhost:3000",
"-----> Shopify <-----": "",
"g:install": "npm i -g @shopify/cli@latest",
"shopify": "shopify",
"update:config": "node _developer/tomlWriter.js; npm run pretty; shopify app deploy;",
"update:url": "node _developer/updateDashboard.js",
"-----> Database <-----": "",
"pg:create": "mkdir database; pg_ctl -D database init",
"pg:start": "pg_ctl -D database start",
"pg:stop": "pg_ctl -D database stop",
"db:create": "mkdir database; mysqld --initialize-insecure --datadir=./database",
"db:start": "mysqld --datadir=./database",
"db:stop": "mysqladmin shutdown",
"-----> 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": "^6.1.0",
"@shopify/polaris": "^13.9.2",
"@shopify/shopify-api": "^11.6.1",
"cryptr": "^6.3.0",
"next": "15.1.3",
"next-api-middleware": "^3.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@iarna/toml": "^2.2.5",
"@shopify/cli-kit": "^3.72.2",
"dotenv": "^16.4.7",
"ngrok": "^5.0.0-beta.2",
"npm-check-updates": "^17.1.13",
"prettier": "^3.4.2",
"prisma": "^6.1.0"
}
}