2018-08-31 13:06:01 +02:00
|
|
|
{
|
|
|
|
|
"name": "@scm-manager/ui-components",
|
2022-06-02 07:26:21 +00:00
|
|
|
"version": "2.35.0",
|
2018-08-31 13:06:01 +02:00
|
|
|
"description": "UI Components for SCM-Manager and its plugins",
|
2019-10-19 16:38:07 +02:00
|
|
|
"main": "src/index.ts",
|
2018-11-06 16:36:11 +01:00
|
|
|
"files": [
|
2019-10-07 10:57:09 +02:00
|
|
|
"dist",
|
2018-11-06 16:36:11 +01:00
|
|
|
"src"
|
|
|
|
|
],
|
2018-08-31 13:06:01 +02:00
|
|
|
"repository": "https://bitbucket.org/sdorra/scm-manager",
|
2018-09-05 14:32:49 +02:00
|
|
|
"author": "Sebastian Sdorra <sebastian.sdorra@cloudogu.com>",
|
2020-03-23 15:35:58 +01:00
|
|
|
"license": "MIT",
|
2018-08-31 13:06:01 +02:00
|
|
|
"scripts": {
|
2019-10-09 16:52:18 +02:00
|
|
|
"test": "jest",
|
2019-10-20 16:59:02 +02:00
|
|
|
"typecheck": "tsc",
|
2021-05-11 14:09:09 +02:00
|
|
|
"build-storybook": "build-storybook",
|
|
|
|
|
"chromatic": "chromatic --project-token=${CHROMATIC_PROJECT_TOKEN} --skip '@(snyk-**|dependabot/**)'",
|
2019-10-17 14:32:55 +02:00
|
|
|
"storybook": "start-storybook -s ../ui-webapp/public",
|
2019-10-19 16:38:07 +02:00
|
|
|
"storyshots": "jest --testPathPattern=\"storyshots.test.ts\" --collectCoverage=false",
|
|
|
|
|
"update-storyshots": "jest --testPathPattern=\"storyshots.test.ts\" --collectCoverage=false -u"
|
2018-08-31 13:06:01 +02:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2022-04-25 16:34:40 +02:00
|
|
|
"@scm-manager/babel-preset": "^2.13.1",
|
|
|
|
|
"@scm-manager/eslint-config": "^2.15.1",
|
2021-11-10 10:10:17 +01:00
|
|
|
"@scm-manager/jest-preset": "^2.13.0",
|
2020-12-09 11:35:40 +01:00
|
|
|
"@scm-manager/prettier-config": "^2.10.1",
|
2022-04-25 16:34:40 +02:00
|
|
|
"@scm-manager/tsconfig": "^2.13.0",
|
2022-06-02 07:26:21 +00:00
|
|
|
"@scm-manager/ui-tests": "^2.35.0",
|
2022-04-25 16:34:40 +02:00
|
|
|
"@storybook/addon-actions": "^6.4.20",
|
|
|
|
|
"@storybook/addon-essentials": "^6.4.20",
|
|
|
|
|
"@storybook/addon-interactions": "^6.4.20",
|
2022-04-29 11:42:21 +00:00
|
|
|
"@storybook/addon-storyshots": "^6.4.20",
|
2022-04-25 16:34:40 +02:00
|
|
|
"@storybook/builder-webpack5": "^6.4.20",
|
|
|
|
|
"@storybook/manager-webpack5": "^6.4.20",
|
|
|
|
|
"@storybook/react": "^6.4.20",
|
2019-10-20 16:59:02 +02:00
|
|
|
"@types/classnames": "^2.2.9",
|
2020-10-22 10:17:51 +02:00
|
|
|
"@types/css": "^0.0.31",
|
2019-10-20 16:59:02 +02:00
|
|
|
"@types/enzyme": "^3.10.3",
|
|
|
|
|
"@types/fetch-mock": "^7.3.1",
|
|
|
|
|
"@types/jest": "^24.0.19",
|
2021-03-05 15:09:35 +01:00
|
|
|
"@types/react": "^17.0.1",
|
|
|
|
|
"@types/react-dom": "^17.0.1",
|
2022-04-25 16:34:40 +02:00
|
|
|
"@types/react-router-dom": "^5.3.3",
|
2019-10-20 16:59:02 +02:00
|
|
|
"@types/react-select": "^2.0.19",
|
2022-04-25 16:34:40 +02:00
|
|
|
"@types/styled-components": "^5.1.25",
|
2020-10-22 10:17:51 +02:00
|
|
|
"@types/to-camel-case": "^1.0.0",
|
2021-03-11 10:28:18 +01:00
|
|
|
"@types/unist": "^2.0.3",
|
2021-05-11 14:09:09 +02:00
|
|
|
"chromatic": "^5.8.0",
|
2020-10-22 10:17:51 +02:00
|
|
|
"css": "^3.0.0",
|
2019-10-10 15:05:17 +02:00
|
|
|
"enzyme-context": "^1.1.2",
|
|
|
|
|
"enzyme-context-react-router-4": "^2.0.0",
|
2019-10-09 12:14:41 +02:00
|
|
|
"fetch-mock": "^7.5.1",
|
2022-04-25 16:34:40 +02:00
|
|
|
"gitdiff-parser": "^0.2.2",
|
2021-11-10 10:10:17 +01:00
|
|
|
"html-webpack-plugin": "^5.5.0",
|
2020-03-24 08:56:29 +01:00
|
|
|
"i18next-fetch-backend": "^2.2.0",
|
2021-11-04 08:33:11 +01:00
|
|
|
"mini-css-extract-plugin": "^1.6.2",
|
2018-10-17 15:54:25 +02:00
|
|
|
"raf": "^3.4.0",
|
2021-03-05 15:09:35 +01:00
|
|
|
"react-test-renderer": "^17.0.1",
|
2021-11-10 10:10:17 +01:00
|
|
|
"sass-loader": "^12.3.0",
|
2020-11-18 10:44:28 +01:00
|
|
|
"storybook-addon-i18next": "^1.3.0",
|
2021-11-04 08:33:11 +01:00
|
|
|
"storybook-addon-themes": "^6.1.0",
|
2020-10-22 10:17:51 +02:00
|
|
|
"to-camel-case": "^1.0.0",
|
2022-04-25 16:34:40 +02:00
|
|
|
"webpack": "^5.72.0"
|
2018-08-31 13:06:01 +02:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2022-01-24 12:46:01 +00:00
|
|
|
"@headlessui/react": "^1.4.3",
|
2022-06-02 07:26:21 +00:00
|
|
|
"@scm-manager/ui-api": "^2.35.0",
|
|
|
|
|
"@scm-manager/ui-extensions": "^2.35.0",
|
|
|
|
|
"@scm-manager/ui-types": "^2.35.0",
|
2018-08-31 13:06:01 +02:00
|
|
|
"classnames": "^2.2.6",
|
2019-10-09 15:51:49 +02:00
|
|
|
"date-fns": "^2.4.1",
|
2021-04-22 08:50:04 +00:00
|
|
|
"deepmerge": "^4.2.2",
|
|
|
|
|
"hast-util-sanitize": "^3.0.2",
|
2021-11-29 11:21:45 +01:00
|
|
|
"query-string": "6.14.1",
|
2021-03-05 15:09:35 +01:00
|
|
|
"react": "^17.0.1",
|
2022-04-25 16:34:40 +02:00
|
|
|
"react-diff-view": "^2.4.10",
|
2021-03-05 15:09:35 +01:00
|
|
|
"react-dom": "^17.0.1",
|
2021-05-14 09:08:57 +02:00
|
|
|
"react-hook-form": "^7.5.1",
|
2019-10-23 10:26:27 +02:00
|
|
|
"react-i18next": "^10.13.1",
|
2022-04-25 16:34:40 +02:00
|
|
|
"react-router": "^5.3.1",
|
2022-04-29 11:42:21 +00:00
|
|
|
"react-router-dom": "^5.3.1",
|
2019-03-13 12:00:36 +01:00
|
|
|
"react-select": "^2.1.2",
|
2021-04-22 08:50:04 +00:00
|
|
|
"rehype-raw": "^5.1.0",
|
2021-04-21 12:05:37 +02:00
|
|
|
"rehype-react": "^6.2.0",
|
|
|
|
|
"rehype-sanitize": "^4.0.0",
|
|
|
|
|
"rehype-slug": "^4.0.1",
|
2021-04-22 08:50:04 +00:00
|
|
|
"remark-gfm": "^1.0.0",
|
|
|
|
|
"remark-parse": "^9.0.0",
|
|
|
|
|
"remark-rehype": "^8.0.0",
|
2021-12-20 08:49:44 +01:00
|
|
|
"tabbable": "^5.2.1",
|
2022-01-24 12:46:01 +00:00
|
|
|
"unified": "^9.2.1"
|
2019-02-26 15:00:05 +01:00
|
|
|
},
|
2022-05-04 15:15:35 +02:00
|
|
|
"peerDependencies": {
|
|
|
|
|
"@scm-manager/ui-syntaxhighlighting": "^2.33.1-SNAPSHOT",
|
|
|
|
|
"@scm-manager/ui-text": "^2.33.1-SNAPSHOT"
|
|
|
|
|
},
|
2019-10-10 10:53:38 +02:00
|
|
|
"babel": {
|
2019-10-10 15:05:17 +02:00
|
|
|
"presets": [
|
|
|
|
|
"@scm-manager/babel-preset"
|
|
|
|
|
]
|
2019-10-10 10:53:38 +02:00
|
|
|
},
|
2019-10-09 10:19:46 +02:00
|
|
|
"jest": {
|
2019-10-10 14:32:37 +02:00
|
|
|
"preset": "@scm-manager/jest-preset"
|
2019-10-14 11:58:18 +02:00
|
|
|
},
|
2019-10-16 11:22:33 +02:00
|
|
|
"prettier": "@scm-manager/prettier-config",
|
2022-04-25 16:34:40 +02:00
|
|
|
"eslintConfig": {
|
|
|
|
|
"extends": "@scm-manager/eslint-config"
|
|
|
|
|
},
|
2019-10-16 11:22:33 +02:00
|
|
|
"publishConfig": {
|
|
|
|
|
"access": "public"
|
|
|
|
|
}
|
2019-04-08 11:24:48 +02:00
|
|
|
}
|