-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.98 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
{
"name": "shopify-remix-app",
"version": "0.00",
"private": true,
"sideEffects": false,
"type": "module",
"author": {
"name": "Harshdeep Singh Hura",
"url": "https://harshdeephura.com"
},
"repository": {
"type": "git",
"url": "https://github.com/kinngh/shopify-remix-app.git"
},
"scripts": {
"build": "react-router build",
"dev": "react-router dev",
"start": "react-router-serve ./build/server/index.js",
"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 && shopify app deploy; npm run pretty",
"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",
"-----> 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": "5.22.0",
"@react-router/serve": "^7.0.1",
"@shopify/app-bridge-react": "^4.1.5",
"@shopify/polaris": "^13.9.1",
"@shopify/shopify-api": "^11.6.0",
"cryptr": "^6.3.0",
"dotenv": "^16.4.5",
"isbot": "^5.1.17",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router": "^7.0.1",
"remix-flat-routes": "^0.6.5"
},
"devDependencies": {
"@iarna/toml": "^2.2.5",
"@react-router/dev": "^7.0.1",
"ngrok": "^5.0.0-beta.2",
"npm-check-updates": "^17.1.11",
"prettier": "^3.3.3",
"prisma": "5.22.0",
"vite": "^5.4.11",
"vite-jsconfig-paths": "^2.0.1"
}
}