forked from FelixTellmann/shopify-development-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.14 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
{
"name": "shopify-development-app",
"version": "0.4.1",
"author": "Felix Tellmann",
"description": "Shopify Boilerplate App based on MERN Stack to fully integrate into the Shopify App store. Going through OAuth, Billing API, Embedded App SDK providing an interface based on Polaris.",
"scripts": {
"install": "(cd server && yarn) && (cd client_app && yarn) && (cd client_index && yarn)",
"heroku-postbuild": "yarn build",
"build": "cd server && yarn build",
"build:server": "cd server && yarn build:server",
"build:client:app": "cd server && yarn build:client:app",
"build:client:index": "cd server && yarn build:client:index",
"ngrok": "./ngrok http 3000",
"start": "cd server && yarn start",
"start:server": "cd server && yarn start:server",
"start:prod": "cd server && yarn start:prod",
"clean": "cd server && yarn clean",
"clean:build": "cd server && yarn clean:build"
},
"keywords": [
"Shopify",
"Node",
"Express",
"React",
"Polaris",
"Passport",
"App",
"Liquix",
"Boilerplate",
"Development"
],
"engines": {
"node": "8.9.x"
},
"dependencies": {}
}