@pimcore/studio-ui-bundle-copy 0.5.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/.gitkeep +0 -0
- package/dist/types/entrypoints.d.ts +3 -0
- package/package.json +131 -0
package/dist/.gitkeep
ADDED
|
File without changes
|
package/package.json
ADDED
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@pimcore/studio-ui-bundle-copy",
|
|
3
|
+
"version": "0.5.21",
|
|
4
|
+
"scripts": {
|
|
5
|
+
"dev-server": "NODE_ENV=dev-server rsbuild dev",
|
|
6
|
+
"dev-server-sdk": "NODE_ENV=dev-server rsbuild dev --config rsbuild.sdk.config.ts",
|
|
7
|
+
"dev": "NODE_ENV=development rsbuild build",
|
|
8
|
+
"dev-sdk": "NODE_ENV=development rsbuild build --config rsbuild.sdk.config.ts",
|
|
9
|
+
"dev-app": "npm run dev-sdk && npm run dev",
|
|
10
|
+
"build": "rsbuild build",
|
|
11
|
+
"build-sdk": "rsbuild build --config rsbuild.sdk.config.ts",
|
|
12
|
+
"build-app": "npm run build-sdk && npm run build",
|
|
13
|
+
"build-rsbuild-plugins": "rsbuild build --config rsbuild.plugins.config.ts",
|
|
14
|
+
"build-storybook": "storybook build --output-dir ./storybook-static",
|
|
15
|
+
"build-api-client": "npx @rtk-query/codegen-openapi ./build/api/openapi-config.ts",
|
|
16
|
+
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./js",
|
|
17
|
+
"lint-fix": "eslint --ext .js,.jsx,.ts,.tsx ./js --fix",
|
|
18
|
+
"lint-fix-watch": "nodemon --watch './js/**/*' --exec \"eslint --ext .js,.jsx,.ts,.tsx ./js --fix --cache\" -e js,jsx,ts,tsx",
|
|
19
|
+
"test": "jest ./js/src --passWithNoTests",
|
|
20
|
+
"storybook": "storybook dev -p 6006 --no-open",
|
|
21
|
+
"check-types": "tsc --noEmit",
|
|
22
|
+
"check-types-watch": "tsc --noEmit --watch",
|
|
23
|
+
"generate-types": "tsc && tsc-alias",
|
|
24
|
+
"generate-icons": "npx ts-node -O '{\"module\": \"CommonJS\", \"esModuleInterop\": true}' -r tsconfig-paths/register build/generate-icon-index.ts"
|
|
25
|
+
},
|
|
26
|
+
"exports": {
|
|
27
|
+
".": {
|
|
28
|
+
"types": "./dist/build/types/src/sdk/main.d.ts"
|
|
29
|
+
},
|
|
30
|
+
"./*": {
|
|
31
|
+
"types": "./dist/build/types/src/sdk/*/index.d.ts"
|
|
32
|
+
},
|
|
33
|
+
"./rsbuild/plugins": {
|
|
34
|
+
"default": "./dist/build/rsbuild/plugins/entrypoints.js",
|
|
35
|
+
"types": "./dist/types/entrypoints.d.ts"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"files": [
|
|
39
|
+
"dist"
|
|
40
|
+
],
|
|
41
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@module-federation/rsbuild-plugin": "^0.13.1",
|
|
44
|
+
"@rsbuild/core": "^1.3.15",
|
|
45
|
+
"@rsbuild/plugin-react": "^1.3.0",
|
|
46
|
+
"@rsbuild/plugin-svgr": "^1.2.0",
|
|
47
|
+
"@rtk-query/codegen-openapi": "^2.0.0",
|
|
48
|
+
"@storybook/addon-a11y": "^8.4.4",
|
|
49
|
+
"@storybook/addon-essentials": "^8.4.4",
|
|
50
|
+
"@storybook/addon-interactions": "^8.4.4",
|
|
51
|
+
"@storybook/addon-links": "^8.4.4",
|
|
52
|
+
"@storybook/addon-onboarding": "^8.4.4",
|
|
53
|
+
"@storybook/addon-webpack5-compiler-swc": "^1.0.5",
|
|
54
|
+
"@storybook/blocks": "^8.0.5",
|
|
55
|
+
"@storybook/react": "^8.0.5",
|
|
56
|
+
"@storybook/react-webpack5": "^8.4.4",
|
|
57
|
+
"@storybook/test": "^8.0.5",
|
|
58
|
+
"@testing-library/dom": "^9.3.4",
|
|
59
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
60
|
+
"@testing-library/react": "^14.3.1",
|
|
61
|
+
"@testing-library/user-event": "^14.5.2",
|
|
62
|
+
"@types/jest": "^29.5.14",
|
|
63
|
+
"@types/webpack-env": "^1.18.8",
|
|
64
|
+
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
65
|
+
"eslint": "^8.57.1",
|
|
66
|
+
"eslint-config-standard-with-typescript": "^43.0.1",
|
|
67
|
+
"eslint-plugin-header": "^3.1.1",
|
|
68
|
+
"eslint-plugin-import": "^2.31.0",
|
|
69
|
+
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
70
|
+
"eslint-plugin-n": "^16.6.2",
|
|
71
|
+
"eslint-plugin-promise": "^6.6.0",
|
|
72
|
+
"eslint-plugin-react": "^7.37.2",
|
|
73
|
+
"eslint-plugin-storybook": "^0.8.0",
|
|
74
|
+
"jest": "^29.7.0",
|
|
75
|
+
"jest-environment-jsdom": "^29.7.0",
|
|
76
|
+
"nodemon": "^3.1.10",
|
|
77
|
+
"storybook": "^8.4.4",
|
|
78
|
+
"storybook-react-rsbuild": "^1.0.1",
|
|
79
|
+
"stream": "^0.0.2",
|
|
80
|
+
"ts-jest": "^29.2.5",
|
|
81
|
+
"ts-loader": "^9.5.1",
|
|
82
|
+
"ts-node": "^10.9.2",
|
|
83
|
+
"tsc-alias": "^1.8.10",
|
|
84
|
+
"typescript": "^5.6.3",
|
|
85
|
+
"typescript-transform-paths": "^3.5.5",
|
|
86
|
+
"whatwg-fetch": "^3.6.20"
|
|
87
|
+
},
|
|
88
|
+
"dependencies": {
|
|
89
|
+
"@codemirror/lang-css": "^6.3.0",
|
|
90
|
+
"@codemirror/lang-html": "^6.4.9",
|
|
91
|
+
"@codemirror/lang-javascript": "^6.2.2",
|
|
92
|
+
"@codemirror/lang-json": "^6.0.1",
|
|
93
|
+
"@codemirror/lang-markdown": "^6.3.1",
|
|
94
|
+
"@codemirror/lang-sql": "^6.8.0",
|
|
95
|
+
"@codemirror/lang-xml": "^6.1.0",
|
|
96
|
+
"@dnd-kit/core": "^6.1.0",
|
|
97
|
+
"@dnd-kit/modifiers": "^7.0.0",
|
|
98
|
+
"@dnd-kit/sortable": "^8.0.0",
|
|
99
|
+
"@module-federation/enhanced": "^0.13.1",
|
|
100
|
+
"@reduxjs/toolkit": "^2.3.0",
|
|
101
|
+
"@tanstack/react-table": "^8.20.5",
|
|
102
|
+
"@types/dompurify": "^3.2.0",
|
|
103
|
+
"@types/leaflet": "^1.9.14",
|
|
104
|
+
"@types/leaflet-draw": "^1.0.11",
|
|
105
|
+
"@types/lodash": "^4.17.13",
|
|
106
|
+
"@types/react": "^18.3.12",
|
|
107
|
+
"@types/react-dom": "^18.3.1",
|
|
108
|
+
"@uiw/react-codemirror": "^4.23.6",
|
|
109
|
+
"antd": "5.22.x",
|
|
110
|
+
"antd-style": "3.7.x",
|
|
111
|
+
"classnames": "^2.5.1",
|
|
112
|
+
"dompurify": "^3.2.1",
|
|
113
|
+
"flexlayout-react": "^0.7.15",
|
|
114
|
+
"framer-motion": "^11.11.17",
|
|
115
|
+
"i18next": "^23.16.8",
|
|
116
|
+
"immer": "^10.1.1",
|
|
117
|
+
"inversify": "6.1.x",
|
|
118
|
+
"leaflet": "^1.9.4",
|
|
119
|
+
"leaflet-draw": "^1.0.4",
|
|
120
|
+
"lodash": "^4.17.21",
|
|
121
|
+
"react": "18.3.x",
|
|
122
|
+
"react-dom": "18.3.x",
|
|
123
|
+
"react-draggable": "^4.4.6",
|
|
124
|
+
"react-i18next": "^14.1.3",
|
|
125
|
+
"react-redux": "^9.1.2",
|
|
126
|
+
"react-router-dom": "^6.28.0",
|
|
127
|
+
"reflect-metadata": "0.2.x",
|
|
128
|
+
"ts-patch": "^3.3.0",
|
|
129
|
+
"uuid": "^10.0.0"
|
|
130
|
+
}
|
|
131
|
+
}
|