-
Notifications
You must be signed in to change notification settings - Fork 214
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.22 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.22 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
{
"name": "template-mrt-reference-app",
"version": "2.9.0",
"engines": {
"node": "^14.0.0 || ^16.0.0 || ^18.0.0 || ^20.0.0",
"npm": "^6.14.4 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0"
},
"license": "See license in LICENSE",
"private": true,
"devDependencies": {
"@loadable/component": "^5.15.0",
"cross-fetch": "^3.1.4",
"express-basic-auth": "^1.2.0",
"pwa-kit-dev": "^2.9.0",
"pwa-kit-runtime": "^2.9.0",
"supertest": "^4.0.2"
},
"scripts": {
"test": "pwa-kit-dev test",
"format": "pwa-kit-dev format \"**/*.{js,jsx}\"",
"lint": "pwa-kit-dev lint \"**/*.{js,jsx}\"",
"lint:fix": "npm run lint -- --fix",
"start": "pwa-kit-dev start",
"build": "pwa-kit-dev build",
"push": "npm run build && pwa-kit-dev push",
"save-credentials": "pwa-kit-dev save-credentials",
"tail-logs": "pwa-kit-dev tail-logs"
},
"mobify": {
"ssrEnabled": true,
"ssrParameters": {
"ssrFunctionNodeVersion": "18.x",
"proxyConfigs": [
{
"host": "httpbin.org",
"path": "httpbin"
}
]
},
"ssrOnly": [
"ssr.js",
"node_modules/**/*.*"
],
"ssrShared": [
"intentionally-does-not-exist"
]
}
}