-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.27 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.27 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
{
"name": "knime-pagebuilder",
"version": "1.0.0",
"description": "PageBuilder for KNIME® Analytics Platform & Data Apps",
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check build:*",
"build:app": "vite build",
"build:lib": "vite build --mode lib",
"build:shadow-app-lib": "vite build --mode shadow-app-lib",
"move-sbom": "mv ./dist/app/sbom/bom.json ./bom.json",
"type-check": "vue-tsc -p tsconfig.vitest.json",
"lint": "run-p 'lint:* --fix'",
"lint:js": "eslint . --cache --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts",
"lint:css": "stylelint --cache '**/*.{css,vue}'",
"format": "prettier --cache --write .",
"format:check": "prettier --cache --check .",
"ci:lint-format": "run-p ci:lint:* format:check -c -l",
"ci:lint:js": "run-s lint:js 'lint:js -f json -o test-results/eslint.json'",
"ci:lint:css": "pnpm run lint:css -f json -o test-results/stylelint.json",
"jenkins:lint": "eslint --ext .js,.vue -f json -o target/eslint.json || true; stylelint '**/*.{css,vue}' -f json -o target/stylelint.json || true",
"audit": "pnpm audit --prod",
"test:unit": "TZ='Europe/Berlin' vitest",
"coverage": "TZ='Europe/Berlin' vitest --coverage",
"_TODO_build:credits": "pnpm run opensourcecredits && vue-cli-service build --target lib --formats umd-min --name knime-pagebuilder-credits src/components/PageBuilderCredits.vue",
"prepare": "cd .. && husky ./org.knime.js.pagebuilder/.husky",
"postinstall": "license-check -o licenses/used-packages.json"
},
"license": "UNLICENSED",
"author": "KNIME AG, Zurich, Switzerland",
"dependencies": {
"@knime/components": "1.45.3",
"@knime/kds-styles": "0.9.1",
"@knime/styles": "1.14.0",
"@knime/ui-extension-renderer": "2.5.5",
"@knime/ui-extension-service": "2.5.1",
"@knime/utils": "1.6.0",
"consola": "3.2.3",
"date-fns": "2.30.0",
"date-fns-tz": "2.0.0",
"filesize": "^10.0.6",
"iframe-resizer": "4.3.9",
"lodash-es": "4.17.23",
"mime": "4.0.1",
"uuid": "11.0.2",
"vue": "3.5.18",
"vue-slider-component": "4.1.0-beta.7",
"vuex": "4.1.0"
},
"devDependencies": {
"@knime/eslint-config": "8.3.0",
"@knime/licenses": "1.3.1",
"@tsconfig/node22": "22.0.0",
"@types/color-hash": "^2.0.0",
"@types/jsdom": "21.1.7",
"@types/lodash-es": "4.17.12",
"@types/node": "22.10.10",
"@vitejs/plugin-vue": "5.0.4",
"@vitest/coverage-v8": "1.4.0",
"@vue/test-utils": "2.4.4",
"@vue/tsconfig": "^0.7.0",
"eslint": "8.57.0",
"flush-promises": "1.0.2",
"husky": "9.0.11",
"jsdom": "24.1.0",
"lint-staged": "15.2.2",
"modern-normalize": "3.0.1",
"npm-run-all": "4.1.5",
"postcss-import": "16.0.1",
"postcss-preset-env": "9.5.2",
"postcss-url": "10.1.3",
"prettier": "3.2.5",
"rollup-plugin-sbom": "^2.0.3",
"stylelint": "16.24.0",
"typescript": "5.8.3",
"vite": "5.2.2",
"vite-plugin-css-injected-by-js": "3.5.0",
"vite-svg-loader": "5.1.0",
"vitest": "1.4.0",
"vue-tsc": "3.0.4"
},
"engines": {
"node": "22.11.0",
"npm": "please-use-pnpm"
},
"packageManager": "pnpm@10.7.0",
"pnpm": {
"overrides": {
"minimatch@<3.1.3": ">=3.1.3",
"minimatch@<3.1.4": ">=3.1.4"
}
}
}