-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.18 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 3.18 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
{
"name": "root",
"type": "module",
"version": "1.0.0",
"license": "MIT",
"workspaces": [
"packages/*"
],
"dependencies": {
"@leavittsoftware/lg-core-typescript": "^5.1208.0",
"@material/web": "^2.4.1",
"api-viewer-element": "^1.0.0-pre.10",
"lit": "3.3.2",
"page": "^1.11.6",
"promise-parallel-throttle": "^3.5.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.11.0",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/dom-navigation": "^1.0.7",
"@types/jasmine": "^6.0.0",
"@types/page": "^1.11.9",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@web/dev-server": "^0.4.6",
"@web/rollup-plugin-html": "^3.1.0",
"@web/rollup-plugin-import-meta-assets": "^2.3.2",
"concurrently": "^9.2.1",
"deepmerge": "^4.3.1",
"eslint": "^9.39.1",
"eslint-plugin-lit": "^2.2.1",
"eslint-plugin-wc": "^3.1.0",
"happy-dom": "^20.7.0",
"jasmine": "^6.1.0",
"jasmine-ts": "^0.4.0",
"lerna": "^9.0.4",
"lit-analyzer": "^2.0.3",
"patch-package": "^8.0.1",
"prettier": "^3.8.1",
"replace": "^1.2.2",
"rimraf": "^6.1.3",
"rollup": "^4.59.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-workbox": "^8.1.3",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vscode-css-languageservice": "^6.3.10"
},
"overrides": {
"lit-analyzer": {
"vscode-css-languageservice": "latest"
}
},
"scripts": {
"start": "concurrently --kill-others --names tsc,wds,cem \"tsc --watch\" \"web-dev-server\" \"npm run cem:watch\"",
"build": "tsc && npm run test && npm run cem && cd packages/leavittbook && rimraf dist && rollup -c rollup.config.js ",
"start:build": "web-dev-server --root-dir packages/leavittbook/dist --app-index index.html --open --compatibility none --port 9090",
"nuke": "git clean -fdx && rm -f package-lock.json",
"lint:eslint": "eslint --ext .ts . --ignore-path .gitignore",
"lint": "prettier . --check && eslint \"**/*.ts\" & lit-analyzer \"**/*.ts\" && tsc --noEmit",
"lint-fix": "prettier . --write && eslint \"**/*.ts\" --fix",
"test": "tsc -p tsconfig.spec.json && jasmine --config=spec/support/jasmine.json",
"test:watch": "tsc -p tsconfig.spec.json --watch & jasmine --config=spec/support/jasmine.json --autotest",
"test:clean": "rimraf spec/tmp",
"lerna:publish": "npm run build && npm run stash && lerna publish --conventional-commits --yes",
"lerna:publish-force": "npm run build && lerna publish --conventional-commits --yes --force-publish=*",
"test:publish": "npm run build && lerna version --no-push --yes",
"cem": "cem analyze --globs \"./packages/**/*.ts\" --litelement --outdir packages/leavittbook",
"cem:watch": "cem analyze --watch --globs \"./packages/**/*.ts\" --litelement --outdir packages/leavittbook",
"stash": "git stash"
},
"customElements": "packages/leavittbook/custom-elements.json",
"prettier": {
"trailingComma": "es5",
"semi": true,
"singleQuote": true,
"printWidth": 160
}
}