forked from kinngh/shopify-node-express-mongodb-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.74 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
{
"name": "shopify-express-boilerplate",
"version": "0.0.3",
"description": "Shopify Boilerplate Code written in React, Node, Express, MongoDB and GraphQL",
"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",
"dev": "NODE_ENV=dev nodemon server/index.js --ignore ./src",
"preserve": "npm run build",
"build": "vite build --outDir dist/client",
"start": "NODE_ENV=prod node server/index.js",
"pretty": "prettier --write .",
"ngrok:auth": "ngrok authtoken <your-auth-token>",
"ngrok": "ngrok http 8081",
"update:url": "node devUtils/updateDashboard.mjs",
"shopify": "shopify",
"s:e:create": "shopify app scaffold extension",
"s:e:deploy": "shopify app deploy"
},
"dependencies": {
"@apollo/client": "^3.7.0",
"@shopify/app-bridge": "^3.3.2",
"@shopify/app-bridge-react": "^3.3.2",
"@shopify/app-bridge-utils": "^3.3.2",
"@shopify/polaris": "^10.7.0",
"@shopify/shopify-api": "^5.2.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cryptr": "^6.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"graphql": "^16.6.0",
"mongoose": "^6.6.5",
"raviger": "^4.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"serve-static": "^1.15.0"
},
"devDependencies": {
"@shopify/app": "^3.16.3",
"@shopify/cli": "^3.16.3",
"@shopify/cli-kit": "^3.16.3",
"@vitejs/plugin-react": "^2.1.0",
"ngrok": "^4.3.3",
"nodemon": "^2.0.20",
"npm-check-updates": "^16.3.11",
"prettier": "^2.7.1",
"vite": "^3.1.7"
}
}