-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
177 lines (177 loc) · 7.1 KB
/
package.json
File metadata and controls
177 lines (177 loc) · 7.1 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{
"name": "@ecl/ecl-webcomponents-library",
"description": "ECL web components library",
"license": "EUPL-1.2",
"private": true,
"main": "packages/ecl-webcomponents/dist/index.cjs.js",
"module": "packages/ecl-webcomponents/dist/index.js",
"es2015": "packages/ecl-webcomponents/dist/esm/index.mjs",
"es2017": "packages/ecl-webcomponents/dist/esm/index.mjs",
"types": "packages/ecl-webcomponents/dist/types/components.d.ts",
"collection": "packages/ecl-webcomponents/dist/collection/collection-manifest.json",
"collection:main": "packages/ecl-webcomponents/dist/collection/index.js",
"engines": {
"node": ">=22.0.0",
"pnpm": "10.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ec-europa/ecl-webcomponents"
},
"packageManager": "pnpm@10.9.0",
"scripts": {
"build": "run-s build:*",
"build:clean": "rimraf build dist",
"build:web-components": "pnpm --filter \"@ecl/web-components-*\" run build",
"build:stencil": "stencil build",
"build:react": "pnpm --filter \"@ecl/ecl-webcomponents-react\" run build",
"build:vue": "pnpm --filter \"@ecl/ecl-webcomponents-vue\" run build",
"build:react-consumer": "pnpm --filter \"@ecl/ecl-webcomponents-react-consumer\" run build",
"build:angular": "pnpm --filter \"@ecl/ecl-webcomponents-angular-workspace\" run build",
"build:vue-consumer": "pnpm --filter \"@ecl/ecl-webcomponents-vue-consumer\" run build",
"build:storybook": "NODE_ENV=production storybook build -o build",
"build:playground": "run-s build:playground:*",
"build:playground:clean": "rimraf playground/public/ecl-webcomponents playground/dist",
"build:playground:copy": "pnpm --filter \"@ecl/ecl-webcomponents-playground\" run copy",
"build:playground:version": "scripts/add-build-number.js",
"build:playground:build": "pnpm --filter \"@ecl/ecl-webcomponents-playground\" run build && ncp ./playground/dist ./build/playground",
"build:copy": "scripts/copy-assets.sh",
"changelog": "lerna-changelog",
"lint:js": "eslint . --ext .js",
"lint:scss": "stylelint \"./src/**/*.scss\"",
"lint": "npm-run-all --parallel lint:* -cln",
"prepare": "npx husky install",
"pretty-check": "prettier --check \"src/**/*.{md,mdx,html,json,yml,js,jsx,scss}\"",
"pretty-write": "prettier --write \"src/**/*.{md,mdx,html,json,yml,js,jsx,scss}\"",
"publish": "lerna --scope \"@ecl/ckeditor5-ecl-webcomponents\" run pre-publish && scripts/publish.sh",
"start": "stencil build --watch",
"test": "pnpm pretty-check && pnpm jest",
"test:update": "rimraf src/components/*/test/__snapshots__ && pnpm test",
"generate": "run-s \"generate:* {@}\" --",
"generate:stencil": "stencil generate",
"generate:docs": "stencil build --docs",
"generate:template": "scripts/template.sh",
"prepublish": "npm run build:stencil && pnpm --filter \"@ecl/ecl-webcomponents-*\" run pre-publish",
"plugins:make": "pnpm --filter \"@ecl/ckeditor5-*\" run build",
"postinstall": "[ -z \"$NOpnpmPOSTINSTALL\" ] && (pnpm recursive run postinstall && pnpm recursive run prepublish) || echo \"Bypass prepublish\"",
"refresh-playground": "pnpm build:playground:copy",
"dev": "storybook dev -p 6006",
"dev-react": "pnpm --filter \"@ecl/ecl-webcomponents-react*\" run dev",
"dev-vue": "pnpm --filter \"@ecl/ecl-webcomponents-vue-consumer\" run dev",
"dev-angular:watch": "cd packages/ecl-webcomponents-angular-workspace/projects/ecl-webcomponents-angular-consumer && npm run watch",
"dev-angular:start": "pnpm --filter \"@ecl/ecl-webcomponents-angular-workspace*\" run serve",
"dev-angular:reload": "pnpm --filter \"@ecl/ecl-webcomponents-angular-workspace*\" run reload",
"dev-angular": "run-p dev-angular:*",
"dev-playground": "pnpm --filter @ecl/ecl-webcomponents-playground run dev",
"update-deps": "npm-check-updates -i -ws",
"update-version": "scripts/update-version.sh"
},
"dependencies": {
"@ecl/ecl-webcomponents-library": "link:",
"@stencil/core": "4.43.4"
},
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/eslint-parser": "7.28.6",
"@babel/plugin-transform-runtime": "7.29.0",
"@babel/preset-react": "7.28.5",
"@babel/preset-typescript": "7.28.5",
"@ecl/ecl-webcomponents": "0.26.0",
"@ecl/preset-ec": "5.0.0-RC2",
"@eslint/js": "9.39.2",
"@prettier/plugin-xml": "3.4.2",
"@stencil/angular-output-target": "0.10.2",
"@stencil/react-output-target": "0.5.3",
"@stencil/vue-output-target": "0.13.1",
"@storybook/addon-docs": "10.4.0",
"@storybook/addon-links": "10.4.0",
"@storybook/html-vite": "10.4.0",
"@types/jest": "28.1.3",
"@typescript-eslint/eslint-plugin": "8.59.4",
"@typescript-eslint/parser": "8.59.4",
"babel-loader": "10.1.1",
"browser-update": "3.3.63",
"build-number-generator": "3.1.0",
"copyfiles": "2.4.1",
"core-js": "3.49.0",
"cross-env": "10.1.0",
"eslint": "9.39.2",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "29.15.2",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-oxlint": "1.65.0",
"eslint-plugin-playwright": "2.10.3",
"eslint-plugin-vue": "10.9.1",
"@vitest/eslint-plugin": "1.6.17",
"get-latest-version": "5.1.0",
"globals": "17.6.0",
"husky": "9.1.7",
"jest": "28.1.3",
"jest-cli": "28.1.3",
"lerna": "9.0.7",
"lerna-changelog": "2.2.0",
"lint-staged": "17.0.5",
"ncp": "2.0.0",
"npm-check-updates": "22.2.0",
"npm-run-all": "4.1.5",
"prettier": "3.8.3",
"puppeteer": "25.0.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"replace-in-file": "7.1.0",
"rimraf": "6.1.3",
"storybook": "10.4.0",
"storybook-addon-rtl": "3.0.2",
"stylelint": "17.11.1",
"stylelint-config-css-modules": "4.6.0",
"stylelint-config-prettier": "9.0.5",
"stylelint-config-standard": "40.0.0",
"stylelint-config-standard-scss": "17.0.0",
"stylelint-order": "8.1.1",
"stylelint-scss": "7.1.1"
},
"nohoist": [
"**/ckeditor5*",
"**/ckeditor5*/**"
],
"lint-staged": {
"*.{md,mdx,html,json,yml,svg}": [
"prettier --write"
],
"*.js": [
"prettier --write",
"eslint"
],
"*.scss": [
"prettier --write",
"stylelint"
]
},
"pnpm": {
"overrides": {
"glob-parent": ">=5.1.2",
"trim": ">=0.0.3",
"json5": ">=1.0.2",
"http-cache-semantics": ">=4.1.1",
"yaml": ">=2.2.2",
"semver": ">=7.5.2",
"jackspeak": "2.1.1",
"cli-truncate": "2.1.0"
},
"patchedDependencies": {
"@ecl/builder": "patches/@ecl__builder.patch",
"@ecl/select": "patches/@ecl__select.patch",
"@ecl/banner": "patches/@ecl__banner.patch",
"@ecl/tabs": "patches/@ecl__tabs.patch",
"@ecl/table": "patches/@ecl__table.patch",
"@ecl/mega-menu": "patches/@ecl__mega-menu.patch",
"@ecl/carousel": "patches/@ecl__carousel.patch"
}
}
}