-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 2.16 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
{
"name": "sf-commerce-cloud",
"version": "22.2.2",
"description": "Use this integration to insert images from imgix's Asset Manager into your Salesforce Commerce Cloud websites",
"main": "index.js",
"repository": "https://github.com/imgix/sf-commerce-cloud.git",
"author": "[email protected]",
"license": "MIT",
"private": true,
"devDependencies": {
"@imgix/js-core": "^3.4.0",
"chai": "^3.5.0",
"dotenv": "^10.0.0",
"dotenv-cli": "^4.0.0",
"json": "^11.0.0",
"mocha": "^5.2.0",
"proxyquire": "1.7.4",
"sfcc-ci": "^2.7.3",
"sgmf-scripts": "^2.3.0",
"sinon": "^1.17.7",
"typescript": "^4.5.5"
},
"scripts": {
"build": "yarn run build:cartridges",
"build:cartridges": "cd src/cartridges && tsc",
"build:cartridges:watch": "cd src/cartridges && tsc -w",
"test": "sgmf-scripts --test test/unit/**/*.js",
"setup": "npm run setup:dw-json",
"setup:dw-json": "node setup.js",
"sfcc:login": "dotenv -e .env sfcc-ci client:auth",
"sfcc:logout": "sfcc-ci auth:logout",
"sandbox:list": "sfcc-ci sandbox:list",
"sandbox:start:dev": "dotenv -e .env -- bash -c 'sfcc-ci sandbox:start -s $SFCC_DEV_SANDBOX_ID'",
"sandbox:start:prod": "dotenv -e .env -- bash -c 'sfcc-ci sandbox:start -s $SFCC_DEV_SANDBOX_ID'",
"sandbox:stop:dev": "dotenv -e .env -- bash -c 'sfcc-ci sandbox:stop -s $SFCC_DEV_SANDBOX_ID'",
"sandbox:stop:prod": "dotenv -e .env -- bash -c 'sfcc-ci sandbox:start -s $SFCC_DEV_SANDBOX_ID'",
"cartridge:add-to-path": "sfcc-ci cartridge:add",
"uploadCartridge": "sgmf-scripts --uploadCartridge app_imgix_base_sfra",
"storybook": "cd frontend && npm run storybook",
"deploy": "yarn run build && cd frontend && yarn run deploy",
"build-zip": "pushd metadata && zip -j imgix_data.zip system-objecttype-extensions.xml && popd",
"unzip-metadata": "cd metadata && unzip imgix_data.zip",
"build-extension-zip": "pushd src && zip -r extension.zip extension/"
},
"keywords": [
"imgix",
"commerce-cloud",
"salesforce"
],
"bugs": {
"url": "https://github.com/imgix/sf-commerce-cloud/issues"
},
"homepage": "https://github.com/imgix/sf-commerce-cloud#readme"
}