forked from kinngh/shopify-node-express-mongodb-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.83 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
{
"name": "shopify-express-boilerplate",
"version": "2024.12.05",
"description": "Shopify Boilerplate Code written in React, Node, Express, MongoDB and GraphQL",
"type": "module",
"author": {
"name": "Harshdeep Singh Hura",
"url": "https://harshdeephura.com"
},
"repository": {
"type": "git",
"url": "https://github.com/kinngh/shopify-node-express-mongodb-app.git"
},
"scripts": {
"dev": "NODE_ENV=dev nodemon server/index.js --ignore client/ --ignore dist/ --ignore server/index.js",
"build": "vite build --config=./client/vite.config.js",
"start": "NODE_ENV=prod node server/index.js",
"-----> utils <-----": "",
"update": "ncu -u",
"pretty": "prettier --write .",
"-----> Tunnel <-----": "",
"ngrok:auth": "ngrok authtoken <your-auth-token>",
"ngrok": "ngrok http 8081",
"cloudflare": "cloudflared tunnel --url localhost:8081",
"-----> 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",
"-----> Reserved Scripts <-----": "",
"preserve": "npm run build"
},
"dependencies": {
"@shopify/polaris": "^13.9.1",
"@shopify/shopify-api": "^11.6.0",
"compression": "^1.7.5",
"cryptr": "^6.3.0",
"dotenv": "^16.4.6",
"express": "^4.21.1",
"mongoose": "^8.8.3",
"raviger": "^4.1.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"serve-static": "^1.16.2"
},
"devDependencies": {
"@iarna/toml": "^2.2.5",
"@shopify/cli-kit": "^3.70.0",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.1.0",
"ngrok": "^5.0.0-beta.2",
"nodemon": "^3.1.7",
"npm-check-updates": "^17.1.11",
"prettier": "^3.4.1",
"vite": "^6.0.2"
}
}