2022-05-17 09:22:18 +02:00
|
|
|
{
|
2022-08-11 11:45:31 +02:00
|
|
|
"name": "umbraco-cms-backoffice",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"private": true,
|
|
|
|
|
"version": "0.0.0",
|
|
|
|
|
"repository": {
|
|
|
|
|
"url": "https://github.com/umbraco/Umbraco.CMS.Backoffice",
|
|
|
|
|
"type": "git"
|
|
|
|
|
},
|
|
|
|
|
"bugs": {
|
|
|
|
|
"url": "https://github.com/umbraco/Umbraco.CMS.Backoffice/issues"
|
|
|
|
|
},
|
|
|
|
|
"author": {
|
|
|
|
|
"name": "Umbraco A/S",
|
|
|
|
|
"email": "backoffice@umbraco.com",
|
|
|
|
|
"url": "https://umbraco.com"
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
2022-10-04 20:39:57 +02:00
|
|
|
"dev": "vite",
|
|
|
|
|
"build": "tsc && vite build --mode staging",
|
|
|
|
|
"build:production": "tsc && vite build",
|
2022-08-11 11:45:31 +02:00
|
|
|
"preview": "vite preview --open",
|
2022-10-04 20:39:57 +02:00
|
|
|
"test": "web-test-runner --coverage",
|
|
|
|
|
"test:watch": "web-test-runner --watch",
|
|
|
|
|
"test:e2e": "npx playwright test",
|
2022-08-11 13:24:29 +02:00
|
|
|
"lint": "eslint --cache src e2e",
|
2022-08-11 11:45:31 +02:00
|
|
|
"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",
|
2022-10-04 20:39:57 +02:00
|
|
|
"storybook": "npm run wc-analyze && start-storybook -p 6006",
|
|
|
|
|
"build-storybook": "npm run wc-analyze && build-storybook",
|
|
|
|
|
"generate:icons": "node ./devops/icons/index.mjs",
|
2022-10-05 10:17:20 +02:00
|
|
|
"wc-analyze": "wca **/*.element.ts --outFile custom-elements.json",
|
2022-10-07 16:03:42 +02:00
|
|
|
"new-extension": "plop --plopfile ./devops/plop/plop.mjs",
|
|
|
|
|
"compile": "tsc"
|
2022-08-11 11:45:31 +02:00
|
|
|
},
|
|
|
|
|
"engines": {
|
|
|
|
|
"node": ">=16.0.0 <17",
|
|
|
|
|
"npm": ">=8.0.0 < 9"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2022-09-30 11:09:57 +00:00
|
|
|
"@umbraco-ui/uui": "^1.0.2",
|
2022-08-23 13:26:50 +02:00
|
|
|
"@umbraco-ui/uui-css": "^1.0.0",
|
2022-08-25 12:42:15 +02:00
|
|
|
"@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",
|
|
|
|
|
"@umbraco-ui/uui-modal-dialog": "file:umbraco-ui-uui-modal-dialog-0.0.0.tgz",
|
|
|
|
|
"@umbraco-ui/uui-modal-sidebar": "file:umbraco-ui-uui-modal-sidebar-0.0.0.tgz",
|
2022-10-26 12:42:05 +00:00
|
|
|
"element-internals-polyfill": "^1.1.15",
|
2022-10-13 13:42:19 +00:00
|
|
|
"lit": "^2.4.0",
|
2022-10-06 10:00:11 +02:00
|
|
|
"lodash": "^4.17.21",
|
2022-08-11 11:45:31 +02:00
|
|
|
"openapi-typescript-fetch": "^1.1.3",
|
|
|
|
|
"router-slot": "^1.5.5",
|
2022-09-26 07:02:59 +00:00
|
|
|
"rxjs": "^7.5.7",
|
2022-09-07 13:26:26 +00:00
|
|
|
"uuid": "^9.0.0"
|
2022-08-11 11:45:31 +02:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2022-10-26 14:31:45 +02:00
|
|
|
"@babel/core": "^7.19.6",
|
2022-10-11 18:43:12 +00:00
|
|
|
"@mdx-js/react": "^2.1.5",
|
2022-08-11 11:45:31 +02:00
|
|
|
"@open-wc/testing": "^3.1.6",
|
2022-10-13 13:42:27 +00:00
|
|
|
"@playwright/test": "^1.27.1",
|
2022-09-26 10:27:26 +02:00
|
|
|
"@storybook/addon-a11y": "^6.5.12",
|
|
|
|
|
"@storybook/addon-actions": "^6.5.12",
|
|
|
|
|
"@storybook/addon-essentials": "^6.5.12",
|
2022-09-25 17:21:04 +00:00
|
|
|
"@storybook/addon-links": "^6.5.12",
|
2022-10-11 18:42:28 +00:00
|
|
|
"@storybook/builder-vite": "^0.2.4",
|
2022-08-11 11:45:31 +02:00
|
|
|
"@storybook/mdx2-csf": "^0.0.3",
|
2022-09-26 10:27:26 +02:00
|
|
|
"@storybook/web-components": "^6.5.12",
|
2022-08-11 11:45:31 +02:00
|
|
|
"@types/chai": "^4.3.1",
|
2022-10-04 13:47:41 +02:00
|
|
|
"@types/lodash-es": "^4.17.6",
|
2022-08-11 11:45:31 +02:00
|
|
|
"@types/mocha": "^9.1.1",
|
|
|
|
|
"@types/uuid": "^8.3.4",
|
2022-10-19 10:58:05 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.40.1",
|
2022-10-17 18:36:27 +00:00
|
|
|
"@typescript-eslint/parser": "^5.40.1",
|
2022-10-26 12:37:35 +00:00
|
|
|
"@web/dev-server-esbuild": "^0.3.3",
|
2022-10-18 14:03:42 +02:00
|
|
|
"@web/dev-server-import-maps": "^0.0.7",
|
2022-10-26 12:27:59 +00:00
|
|
|
"@web/test-runner": "^0.15.0",
|
2022-10-26 18:45:54 +00:00
|
|
|
"@web/test-runner-playwright": "^0.9.0",
|
2022-11-03 18:09:56 +00:00
|
|
|
"babel-loader": "^9.1.0",
|
2022-10-17 09:29:13 +00:00
|
|
|
"eslint": "^8.25.0",
|
2022-08-11 11:45:31 +02:00
|
|
|
"eslint-config-prettier": "^8.5.0",
|
2022-10-26 18:46:45 +00:00
|
|
|
"eslint-import-resolver-typescript": "^3.5.2",
|
2022-08-11 11:45:31 +02:00
|
|
|
"eslint-plugin-import": "^2.26.0",
|
|
|
|
|
"eslint-plugin-lit": "^1.6.1",
|
2022-10-06 13:02:44 +00:00
|
|
|
"eslint-plugin-lit-a11y": "^2.2.3",
|
2022-09-07 13:26:51 +00:00
|
|
|
"eslint-plugin-local-rules": "^1.3.2",
|
2022-10-11 18:42:48 +00:00
|
|
|
"eslint-plugin-storybook": "^0.6.6",
|
2022-10-13 13:42:16 +00:00
|
|
|
"lit-html": "^2.4.0",
|
2022-10-04 18:49:38 +00:00
|
|
|
"msw": "^0.47.4",
|
2022-08-11 11:45:31 +02:00
|
|
|
"msw-storybook-addon": "^1.6.3",
|
2022-10-06 13:01:50 +00:00
|
|
|
"playwright-msw": "^1.0.2",
|
2022-09-30 14:45:44 +02:00
|
|
|
"plop": "^3.1.1",
|
2022-08-11 11:45:31 +02:00
|
|
|
"prettier": "2.7.1",
|
2022-09-20 14:47:05 +02:00
|
|
|
"tiny-glob": "^0.2.9",
|
2022-09-30 12:23:56 +00:00
|
|
|
"typescript": "^4.8.4",
|
2022-11-03 18:09:04 +00:00
|
|
|
"vite": "^3.2.2",
|
2022-10-03 10:48:20 +02:00
|
|
|
"vite-plugin-static-copy": "^0.9.0",
|
2022-10-26 12:32:12 +00:00
|
|
|
"vite-tsconfig-paths": "^3.5.2",
|
2022-09-29 10:39:09 +02:00
|
|
|
"web-component-analyzer": "^2.0.0-next.4"
|
2022-08-11 11:45:31 +02:00
|
|
|
},
|
|
|
|
|
"msw": {
|
|
|
|
|
"workerDirectory": "public"
|
|
|
|
|
}
|
2022-05-19 16:38:42 +02:00
|
|
|
}
|