Merge branch 'feature/data-type-config' into feature/Property-Editor-UI-Scaffolds

This commit is contained in:
Mads Rasmussen
2022-10-05 10:17:20 +02:00
656 changed files with 9533 additions and 3185 deletions

View File

@@ -16,30 +16,30 @@
"url": "https://umbraco.com"
},
"scripts": {
"pre-run": "npm run generate:icons",
"dev": "npm run pre-run && vite",
"build": "npm run pre-run && tsc && vite build --mode staging",
"build:production": "npm run pre-run && tsc && vite build",
"dev": "vite",
"build": "tsc && vite build --mode staging",
"build:production": "tsc && vite build",
"preview": "vite preview --open",
"test": "npm run pre-run && web-test-runner --coverage",
"test:watch": "npm run pre-run && web-test-runner --watch",
"test:e2e": "npm run pre-run && playwright test",
"test": "web-test-runner --coverage",
"test:watch": "web-test-runner --watch",
"test:e2e": "npx playwright test",
"lint": "eslint --cache src e2e",
"lint:fix": "npm run lint -- --fix",
"format": "prettier 'src/**/*.ts'",
"format:fix": "npm run format -- --write",
"generate:api": "npx openapi-typescript schemas/**/*.yml --output schemas/generated-schema.ts",
"storybook": "npm run pre-run && start-storybook -p 6006",
"build-storybook": "npm run pre-run && build-storybook",
"generate:icons": "node ./scripts/generate-icons.mjs",
"new:extension": "plop --plopfile ./devops/plop/plop.mjs"
"storybook": "npm run wc-analyze && start-storybook -p 6006",
"build-storybook": "npm run wc-analyze && build-storybook",
"generate:icons": "node ./devops/icons/index.mjs",
"wc-analyze": "wca **/*.element.ts --outFile custom-elements.json",
"new-extension": "plop --plopfile ./devops/plop/plop.mjs"
},
"engines": {
"node": ">=16.0.0 <17",
"npm": ">=8.0.0 < 9"
},
"dependencies": {
"@umbraco-ui/uui": "^1.0.1",
"@umbraco-ui/uui": "^1.0.2",
"@umbraco-ui/uui-css": "^1.0.0",
"@umbraco-ui/uui-modal": "file:umbraco-ui-uui-modal-0.0.0.tgz",
"@umbraco-ui/uui-modal-container": "file:umbraco-ui-uui-modal-container-0.0.0.tgz",
@@ -47,29 +47,30 @@
"@umbraco-ui/uui-modal-sidebar": "file:umbraco-ui-uui-modal-sidebar-0.0.0.tgz",
"element-internals-polyfill": "^1.1.14",
"lit": "^2.3.1",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"openapi-typescript-fetch": "^1.1.3",
"router-slot": "^1.5.5",
"rxjs": "^7.5.7",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/core": "^7.19.3",
"@mdx-js/react": "^2.1.3",
"@open-wc/testing": "^3.1.6",
"@playwright/test": "^1.26.0",
"@playwright/test": "^1.26.1",
"@storybook/addon-a11y": "^6.5.12",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/builder-vite": "^0.2.2",
"@storybook/builder-vite": "^0.2.3",
"@storybook/mdx2-csf": "^0.0.3",
"@storybook/web-components": "^6.5.12",
"@types/chai": "^4.3.1",
"@types/lodash-es": "^4.17.6",
"@types/mocha": "^9.1.1",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"@web/dev-server-esbuild": "^0.3.1",
"@web/test-runner": "^0.14.0",
"@web/test-runner-playwright": "^0.8.10",
@@ -89,9 +90,10 @@
"plop": "^3.1.1",
"prettier": "2.7.1",
"tiny-glob": "^0.2.9",
"typescript": "^4.8.3",
"vite": "^3.1.3",
"vite-plugin-static-copy": "^0.9.0"
"typescript": "^4.8.4",
"vite": "^3.1.4",
"vite-plugin-static-copy": "^0.9.0",
"web-component-analyzer": "^2.0.0-next.4"
},
"msw": {
"workerDirectory": "public"