-
Notifications
You must be signed in to change notification settings - Fork 214
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.39 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.39 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "typescript-minimal",
"version": "4.0.0-extensibility-preview.3",
"private": true,
"scripts": {
"analyze-build": "cross-env MOBIFY_ANALYZE=true npm run build",
"build": "pwa-kit-dev build",
"format": "pwa-kit-dev format \"**/*.{js,jsx,ts,tsx}\"",
"lint": "npm run lint:js && npm run typecheck",
"lint:fix": "npm run lint:js -- --fix",
"lint:js": "pwa-kit-dev lint \"**/*.{js,jsx,ts,tsx}\"",
"push": "npm run build && pwa-kit-dev push",
"save-credentials": "pwa-kit-dev save-credentials",
"start": "pwa-kit-dev start",
"start:inspect": "npm run start -- --inspect",
"tail-logs": "pwa-kit-dev tail-logs",
"test": "pwa-kit-dev test",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@loadable/component": "^5.15.3",
"@salesforce/extension-chakra-store-locator": "^0.1.0-extensibility-preview.3",
"@salesforce/pwa-kit-dev": "4.0.0-extensibility-preview.3",
"@salesforce/pwa-kit-extension-sdk": "4.0.0-extensibility-preview.3",
"@salesforce/pwa-kit-react-sdk": "4.0.0-extensibility-preview.3",
"@salesforce/pwa-kit-runtime": "4.0.0-extensibility-preview.3",
"@tanstack/react-query": "^4.28.0",
"@types/loadable__component": "~5.13.4",
"@types/react": "~18.2.0",
"@types/react-dom": "~18.2.1",
"@types/react-router-dom": "~5.3.3",
"framer-motion": "^11.5.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-intl": "^5.25.1",
"react-router-dom": "^5.3.4",
"typescript": "4.9.5"
},
"engines": {
"node": "^16.11.0 || ^18.0.0 || ^20.0.0",
"npm": "^8.0.0 || ^9.0.0 || ^10.0.0"
},
"mobify": {
"app": {
"extensions": [
[
"@salesforce/extension-chakra-store-locator",
{
"enabled": true,
"path": "/store-locator",
"radius": 100,
"radiusUnit": "km",
"defaultPageSize": 10,
"defaultPostalCode": "10178",
"defaultCountry": "Germany",
"defaultCountryCode": "DE",
"supportedCountries": [
{
"countryCode": "US",
"countryName": "United States"
},
{
"countryCode": "DE",
"countryName": "Germany"
}
],
"commerceApi": {
"proxyPath": "/mobify/proxy/api",
"parameters": {
"shortCode": "8o7m175y",
"clientId": "c9c45bfd-0ed3-4aa2-9971-40f88962b836",
"organizationId": "f_ecom_zzrf_001",
"siteId": "RefArchGlobal",
"locale": "en-GB",
"currency": "USD"
}
}
}
]
]
},
"ssrEnabled": true,
"ssrOnly": [
"ssr.js",
"ssr.js.map",
"node_modules/**/*.*"
],
"ssrShared": [
"static/favicon.ico",
"static/robots.txt",
"**/*.js",
"**/*.js.map",
"**/*.json"
],
"ssrParameters": {
"ssrFunctionNodeVersion": "20.x",
"proxyConfigs": [
{
"host": "kv7kzm78.api.commercecloud.salesforce.com",
"path": "api"
},
{
"host": "zzrf-001.dx.commercecloud.salesforce.com",
"path": "ocapi"
}
]
}
}
}