-
Notifications
You must be signed in to change notification settings - Fork 214
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.47 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.47 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
{
"name": "template-mrt-reference-app",
"version": "3.9.0-dev",
"private": true,
"license": "See license in LICENSE",
"scripts": {
"build": "pwa-kit-dev build",
"format": "pwa-kit-dev format \"**/*.{js,jsx}\"",
"lint": "pwa-kit-dev lint \"**/*.{js,jsx}\"",
"lint:fix": "npm run lint -- --fix",
"push": "npm run build && pwa-kit-dev push",
"save-credentials": "pwa-kit-dev save-credentials",
"start": "pwa-kit-dev start",
"tail-logs": "pwa-kit-dev tail-logs",
"test": "pwa-kit-dev test"
},
"devDependencies": {
"@loadable/component": "^5.15.3",
"@salesforce/pwa-kit-dev": "3.9.0-dev",
"@salesforce/pwa-kit-runtime": "3.9.0-dev",
"@smithy/smithy-client": "^2.1.15",
"aws-sdk-client-mock": "^3.0.0",
"cross-fetch": "^3.1.4",
"express-basic-auth": "^1.2.0",
"supertest": "^4.0.2"
},
"engines": {
"node": "^16.11.0 || ^18.0.0 || ^20.0.0 || ^22.0.0",
"npm": "^8.0.0 || ^9.0.0 || ^10.0.0"
},
"mobify": {
"ssrEnabled": true,
"ssrParameters": {
"ssrFunctionNodeVersion": "20.x",
"proxyConfigs": [
{
"host": "httpbin.org",
"path": "httpbin"
}
]
},
"ssrOnly": [
"ssr.js",
"ssr.js.map",
"node_modules/**/*.*"
],
"ssrShared": [
"static/example.txt"
]
},
"dependencies": {
"@aws-sdk/client-cloudwatch-logs": "^3.450.0",
"@aws-sdk/client-lambda": "^3.450.0",
"@aws-sdk/client-s3": "^3.450.0"
}
}