forked from kinngh/shopify-node-express-mongodb-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.08 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-express-boilerplate",
"version": "0.0.6",
"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": {
"update": "ncu -u",
"update:check": "ncu",
"update:url": "node _developer/updateDashboard.js",
"dev": "concurrently \"npm run dev:*\"",
"dev:server": "NODE_ENV=dev nodemon server/index.js --ignore client/ --ignore dist/",
"dev:client": "vite --config=./client/vite.config.cjs",
"preserve": "npm run build",
"build": "vite build --config=./client/vite.config.cjs",
"start": "NODE_ENV=prod node server/index.js",
"pretty": "prettier --write .",
"ngrok:auth": "ngrok authtoken <your-auth-token>",
"ngrok": "ngrok http 5173",
"ngrok:prod": "ngrok http 8081",
"shopify": "shopify",
"s:e:create": "shopify app generate extension",
"s:e:deploy": "shopify app deploy"
},
"dependencies": {
"@apollo/client": "^3.8.0",
"@shopify/app-bridge": "^3.7.9",
"@shopify/app-bridge-react": "^3.7.9",
"@shopify/polaris": "^11.11.0",
"@shopify/shopify-api": "^7.5.1",
"compression": "^1.7.4",
"cryptr": "^6.2.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"graphql": "^16.7.1",
"mongoose": "^7.4.2",
"ngrok": "^5.0.0-beta.2",
"raviger": "^4.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"serve-static": "^1.15.0"
},
"devDependencies": {
"@shopify/app": "^3.48.1",
"@shopify/cli": "^3.48.1",
"@shopify/cli-kit": "^3.48.1",
"@vitejs/plugin-react": "^4.0.4",
"concurrently": "^8.2.0",
"nodemon": "^3.0.1",
"npm-check-updates": "^16.10.18",
"prettier": "^3.0.1",
"vite": "^4.4.9"
},
"overrides": {
"@shopify/cli-kit": {
"react": "18.2.0"
},
"@shopify/cli": {
"react": "18.2.0"
},
"@shopify/app": {
"react": "18.2.0"
}
}
}