-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.54 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.54 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
{
"name": "@hello-world-web/workspace",
"version": "2.0.0-rc.3",
"private": true,
"type": "module",
"scripts": {
"dev": "pnpm -r --parallel run dev",
"dist": "pnpm run ci",
"clean": "pnpm -r run clean",
"ci": "pnpm run ci:build-and-lint && PLAYWRIGHT_HTML_OPEN=never pnpm run ci:e2e",
"ci:build-and-lint": "run-p lint build",
"ci:e2e": "cross-env PORT=8080 SKIP_WEB_SERVER=true WAIT_ON_TIMEOUT=15000 start-server-and-test start http://localhost:8080 e2e",
"start": "pnpm -F hello-world-web run start",
"healthcheck": "pnpm -F hello-world-web run healthcheck",
"e2e": "pnpm --dir packages/e2e-tests run generate && pnpm --dir packages/e2e-tests e2e",
"dev-trace-sync-io": "cross-env-shell 'export NODE_OPTIONS='--trace-sync-io' && $npm_execpath run dev:server'",
"build": "pnpm -r run build",
"prepublishOnly": "npm shrinkwrap --omit=dev",
"pack": "run-s clean build && pnpm pack && realpath hello-world-web-*.tgz",
"lint": "run-p lint:eslint lint:knip lint:bash",
"lint:knip": "knip",
"lint:eslint": "eslint",
"lint:eslint:fix": "pnpm run lint:eslint --fix || true",
"lint:bash": "shellcheck scripts/*.sh",
"fix": "run-p lint:eslint:fix",
"cy": "pnpm --dir packages/e2e-tests cy",
"set-version": "f() { for TARGET in workspace-root recursive; do pnpm --$TARGET exec npm pkg set \"version=${1}\"; done; }; f",
"test": "pnpm run e2e",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@eslint/compat": "^2.0.0",
"@eslint/js": "^9.8.0",
"@eslint/json": "^0.14.0",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"cross-env": "^10.0.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-playwright": "^2.2.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-testing-library": "^7.0.0",
"globals": "^17.0.0",
"knip": "^5.38.3",
"npm-run-all2": "^8.0.0",
"prettier": "^3.3.3",
"realpath": "^3.0.0",
"start-server-and-test": "^2.0.5",
"typescript": "^5.7.2",
"wait-on": "^9.0.1"
},
"engines": {
"node": ">=22.7.0"
},
"pnpm": {
"overrides": {
"@lit/reactive-element": "2.1.2"
}
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
}