-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 3.45 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "web-components-sdk",
"version": "24.2.10",
"private": true,
"scripts": {
"analyze": "cem analyze --litelement --globs \"src/**/*.ts\"",
"analyze:watch": "cem analyze --litelement --globs \"src/**/*.ts\" --watch",
"build:dev": "run-p -l lint build-dev-only",
"build:dev:ci": "npm run clean && npm install && npm run build:dev",
"build:prod": "run-p -l lint build-prod-only",
"build:prod:ci": "npm run clean && npm install && npm run build:prod",
"clean": "npx shx --yes rm -rf ./dist ./node_modules",
"watch": "webpack --mode=development --watch",
"start-dev": "webpack serve --mode=development",
"start-dev-https": "webpack serve --server-type https --mode=development",
"start-prod": "http-server ./dist --port 3501 --ext html -c-1 --gzip --brotli --cors --proxy http://localhost:3501?",
"start-prod-https": "http-server ./dist --ext html -c-1 --ssl --cert private.pem --key private.key --port 3501 --gzip --brotli --cors --proxy https://localhost:3501?",
"_comment": "Commands above are those expected to be run by customers/clients",
"copy-index": "shx cp dist/index.html dist/simpleportal.html && shx cp dist/index.html dist/portal.html && shx cp dist/index.html dist/fullportal.html && shx cp dist/index.html dist/embedded.html",
"test": "node playwright-message.js && playwright test --project=chromium MediaCo/portal MediaCo/embedded",
"test:headed": "playwright test --headed --project=chromium MediaCo/portal MediaCo/embedded",
"test-report": "playwright show-report tests/playwright-report",
"build-dev-only": "webpack --mode=development && npm run copy-index",
"build-prod-only": "webpack --mode=production && npm run copy-index",
"lint": "run-p -cl lint:*",
"lint:es": "eslint --color --cache --cache-location node_modules/.cache/eslint/ src",
"lint:format": "prettier --log-level warn -c .",
"_lint:lit-analyzer": "lit-analyzer",
"fix": "run-s -cl fix:*",
"fix:es": "eslint --fix --color --cache --cache-location node_modules/.cache/eslint/ src",
"fix:format": "prettier --log-level warn -w ."
},
"dependencies": {
"@lion/ui": "^0.7.6",
"@pega/auth": "^0.2.15",
"@vaadin/grid": "^24.4.6",
"@vaadin/notification": "^24.4.6",
"@vaadin/router": "^2.0.0",
"@vaadin/text-field": "^24.4.6",
"dayjs": "^1.11.13",
"downloadjs": "^1.4.7"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.6.3",
"@pega/configs": "^0.14.0",
"@pega/constellationjs": "~24.2.0",
"@pega/pcore-pconnect-typedefs": "~3.2.1",
"@playwright/test": "^1.22.1",
"@types/debug": "^4.1.12",
"@types/json-schema": "^7.0.15",
"@types/ms": "^0.7.34",
"compression-webpack-plugin": "^11.1.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"eslint": "^8.56.0",
"eslint-import-resolver-typescript": "^3.6.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"http-server": "^14.1.1",
"lit-analyzer": "^2.0.3",
"npm-run-all": "^4.1.5",
"rimraf-standalone": "^2.6.1-7",
"sass-loader": "^16.0.1",
"shx": "^0.3.4",
"style-loader": "^4.0.0",
"ts-lit-plugin": "^2.0.2",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"url-loader": "^4.1.1",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"vaadin": {
"disableUsageStatistics": true
}
}