forked from workleap/wl-squide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 3.56 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
55
56
57
58
59
60
{
"name": "wl-squide",
"author": "Workleap",
"description": "A federated web application shell.",
"private": true,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/gsoft-inc/wl-squide.git"
},
"scripts": {
"postinstall": "pnpm -r --parallel --include-workspace-root exec pnpm dlx rimraf node_modules/.cache && pnpm temporary-script-until-build-order-topology-is-fixed",
"temporary-script-until-build-order-topology-is-fixed": "pnpm build && pnpm build-basic && pnpm build-endpoints",
"dev": "pnpm --filter \"./packages/*\" -r --parallel dev",
"build": "pnpm --filter \"./packages/*\" -r --parallel build",
"test": "jest",
"lint": "pnpm run \"/^lint:.*/\"",
"lint:eslint": "eslint . --max-warnings=-1 --cache --cache-location node_modules/.cache/eslint",
"lint:types": "pnpm -r --parallel --include-workspace-root exec tsc",
"changeset": "changeset",
"ci-release": "pnpm build && changeset publish",
"clean": "pnpm -r --parallel --include-workspace-root exec pnpm dlx rimraf dist node_modules/.cache",
"reset": "pnpm clean && pnpm reset:modules",
"reset:modules": "pnpm -r --parallel --include-workspace-root exec pnpm dlx rimraf node_modules pnpm-lock.yaml",
"dev-basic": "pnpm --filter \"./samples/basic/*\" -r --parallel dev",
"build-basic": "pnpm --filter \"./samples/basic/*\" -r --parallel build",
"serve-basic": "pnpm --filter \"./samples/basic/*\" -r --parallel serve-build",
"deploy-basic": "cross-env NETLIFY=true pnpm build-basic && pnpm run deploy-basic:host && pnpm run deploy-basic:remote-module && pnpm run deploy-basic:another-remote-module",
"deploy-basic:host": "netlify deploy --dir=samples/basic/host/dist --site=ae684cea-e6b1-4293-95d6-fc82462654c8 --prod",
"deploy-basic:remote-module": "netlify deploy --dir=samples/basic/remote-module/dist --site=43234f6e-a884-410e-9b4d-f290459f841f --prod",
"deploy-basic:another-remote-module": "netlify deploy --dir=samples/basic/another-remote-module/dist --site=2673b626-74aa-4c03-8a8f-8c794e90fd07 --prod",
"dev-endpoints": "pnpm --filter \"./samples/endpoints/*\" -r --parallel dev",
"build-endpoints": "pnpm --filter \"./samples/endpoints/*\" -r --parallel build",
"serve-endpoints": "pnpm --filter \"./samples/endpoints/*\" -r --parallel serve-build",
"deploy-endpoints": "cross-env NETLIFY=true pnpm build-endpoints && pnpm run deploy-endpoints:host && pnpm run deploy-endpoints:remote-module",
"deploy-endpoints:host": "netlify deploy --dir=samples/endpoints/host/dist --site=4bde6b8b-cea6-487f-913b-acec9332eb2f --prod",
"deploy-endpoints:remote-module": "netlify deploy --dir=samples/endpoints/remote-module/dist --site=a3f091c3-2bc9-4c50-83a0-72fc6d7fa158 --prod",
"dev-docs": "retype start",
"list-outdated-deps": "pnpm outdated -r --format list",
"update-outdated-deps": "pnpm update -r --latest"
},
"devDependencies": {
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.2",
"@typescript-eslint/parser": "6.8.0",
"@workleap/eslint-plugin": "3.0.0",
"@workleap/typescript-configs": "3.0.2",
"cross-env": "7.0.3",
"eslint": "8.51.0",
"jest": "29.7.0",
"netlify-cli": "16.8.0",
"retypeapp": "3.5.0",
"ts-node": "10.9.1",
"typescript": "5.2.2"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "[email protected]"
}