-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 3.13 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 3.13 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
{
"name": "root",
"type": "module",
"version": "1.0.0",
"license": "MIT",
"workspaces": [
"packages/*"
],
"dependencies": {
"@leavittsoftware/lg-core-typescript": "^5.1342.0",
"@material/web": "^2.4.1",
"api-viewer-element": "^1.0.0-pre.10",
"countup.js": "^2.10.0",
"lit": "3.3.3",
"promise-parallel-throttle": "^3.5.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.11.0",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@types/google.maps": "*",
"@types/jasmine": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^8.62.0",
"@typescript-eslint/parser": "^8.62.0",
"@web/dev-server": "^0.4.6",
"@web/rollup-plugin-html": "^3.1.0",
"@web/rollup-plugin-import-meta-assets": "^2.3.3",
"concurrently": "^10.0.3",
"eslint": "^10.5.0",
"eslint-plugin-lit": "^2.3.1",
"eslint-plugin-wc": "^3.1.0",
"jasmine": "^6.3.0",
"lerna": "^9.0.7",
"lit-analyzer": "^2.0.3",
"prettier": "^3.8.4",
"rimraf": "^6.1.3",
"rollup": "^4.62.2",
"rollup-plugin-workbox": "^8.1.3",
"typescript": "^6.0.3",
"vscode-css-languageservice": "^6.3.10"
},
"overrides": {
"lit-analyzer": {
"vscode-css-languageservice": "latest"
},
"dompurify": "^3.4.11",
"js-yaml": "^4.2.0",
"rollup-plugin-workbox": {
"esbuild": "^0.28.1"
},
"tar": "^7.5.17"
},
"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 packages/leavittbook/dist/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,
"endOfLine": "auto"
}
}