2019-10-07 10:57:09 +02:00
|
|
|
{
|
2019-10-23 15:35:25 +02:00
|
|
|
"name": "root",
|
2019-10-07 10:57:09 +02:00
|
|
|
"private": true,
|
|
|
|
|
"workspaces": [
|
|
|
|
|
"scm-ui/*",
|
|
|
|
|
"scm-plugins/*"
|
|
|
|
|
],
|
|
|
|
|
"scripts": {
|
2021-11-10 10:10:17 +01:00
|
|
|
"build": "webpack-cli --mode=production --config=scm-ui/ui-scripts/src/webpack.config.js",
|
|
|
|
|
"build:dev": "webpack-cli --mode=development --config=scm-ui/ui-scripts/src/webpack.config.js",
|
2022-03-17 09:13:51 +01:00
|
|
|
"test": "lerna run --scope '@scm-manager/ui-*' test --no-bail",
|
2020-08-25 11:17:05 +02:00
|
|
|
"e2e-tests": "lerna run --scope '@scm-manager/e2e-tests' ci",
|
2019-10-20 17:00:19 +02:00
|
|
|
"typecheck": "lerna run --scope '@scm-manager/ui-*' typecheck",
|
2021-12-09 09:12:02 +01:00
|
|
|
"lint": "lerna run --scope '@scm-manager/ui-*' lint",
|
2021-11-03 15:10:02 +01:00
|
|
|
"serve": "ui-scripts serve development",
|
2019-11-29 11:41:04 +01:00
|
|
|
"deploy": "ui-scripts publish",
|
2019-12-04 09:43:06 +01:00
|
|
|
"set-version": "ui-scripts version"
|
2019-10-07 10:57:09 +02:00
|
|
|
},
|
2022-04-25 16:34:40 +02:00
|
|
|
"dependencies": {
|
|
|
|
|
"@scm-manager/eslint-config": "2.15.0"
|
|
|
|
|
},
|
2019-10-07 10:57:09 +02:00
|
|
|
"devDependencies": {
|
2022-02-18 14:47:37 +01:00
|
|
|
"@scm-manager/remark-preset-lint": "^1.0.0",
|
2019-10-19 16:38:07 +02:00
|
|
|
"babel-plugin-reflow": "^0.2.7",
|
2020-07-31 11:12:31 +02:00
|
|
|
"husky": "^4.2.5",
|
|
|
|
|
"lerna": "^3.17.0",
|
2021-04-14 14:40:33 +02:00
|
|
|
"lint-staged": "^10.2.11",
|
|
|
|
|
"remark-cli": "^9.0.0"
|
2019-10-09 10:19:46 +02:00
|
|
|
},
|
|
|
|
|
"resolutions": {
|
2019-10-09 20:46:12 +02:00
|
|
|
"babel-core": "7.0.0-bridge.0",
|
2022-04-25 16:34:40 +02:00
|
|
|
"gitdiff-parser": "https://github.com/scm-manager/gitdiff-parser#420d6cfa17a6a8f9bf1a517a2c629dcb332dbe13"
|
2019-10-09 10:19:46 +02:00
|
|
|
},
|
2019-10-10 14:32:37 +02:00
|
|
|
"babel": {
|
2019-10-13 12:28:21 +02:00
|
|
|
"presets": [
|
|
|
|
|
"@scm-manager/babel-preset"
|
|
|
|
|
]
|
2019-10-10 14:32:37 +02:00
|
|
|
},
|
|
|
|
|
"jest": {
|
2019-10-14 11:58:18 +02:00
|
|
|
"preset": "@scm-manager/jest-preset"
|
2019-10-10 14:32:37 +02:00
|
|
|
},
|
2019-10-14 11:58:18 +02:00
|
|
|
"prettier": "@scm-manager/prettier-config",
|
2020-07-31 11:12:31 +02:00
|
|
|
"husky": {
|
|
|
|
|
"hooks": {
|
|
|
|
|
"pre-commit": "lint-staged --verbose"
|
|
|
|
|
}
|
|
|
|
|
},
|
2021-04-14 14:40:33 +02:00
|
|
|
"remarkConfig": {
|
|
|
|
|
"plugins": [
|
|
|
|
|
"@scm-manager/remark-preset-lint"
|
|
|
|
|
]
|
|
|
|
|
},
|
2020-07-31 11:12:31 +02:00
|
|
|
"lint-staged": {
|
2021-04-14 14:40:33 +02:00
|
|
|
"*.{js,jsx,ts,tsx}": "eslint",
|
2021-04-22 10:04:09 +02:00
|
|
|
"./docs/**/*.md": "remark --frail --"
|
2020-07-31 11:12:31 +02:00
|
|
|
}
|
2019-10-07 10:57:09 +02:00
|
|
|
}
|