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": {
|
2019-10-14 16:00:50 +02:00
|
|
|
"build": "webpack --mode=production --config=scm-ui/ui-scripts/src/webpack.config.js",
|
|
|
|
|
"build:dev": "webpack --mode=development --config=scm-ui/ui-scripts/src/webpack.config.js",
|
2020-06-16 07:45:54 +02:00
|
|
|
"test": "lerna run --scope '@scm-manager/ui-*' --scope '@scm-manager/eslint-config' test",
|
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",
|
2020-01-13 21:38:28 +01:00
|
|
|
"serve": "NODE_ENV=development webpack-dev-server --hot --mode=development --config=scm-ui/ui-scripts/src/webpack.config.js",
|
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
|
|
|
},
|
2020-07-31 11:12:31 +02:00
|
|
|
"dependencies": {},
|
2019-10-07 10:57:09 +02:00
|
|
|
"devDependencies": {
|
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",
|
|
|
|
|
"lint-staged": "^10.2.11"
|
2019-10-09 10:19:46 +02:00
|
|
|
},
|
|
|
|
|
"resolutions": {
|
2019-10-09 20:46:12 +02:00
|
|
|
"babel-core": "7.0.0-bridge.0",
|
2020-09-09 11:50:41 +02:00
|
|
|
"gitdiff-parser": "https://github.com/scm-manager/gitdiff-parser#420d6cfa17a6a8f9bf1a517a2c629dcb332dbe13",
|
2020-01-27 13:30:46 +01:00
|
|
|
"lowlight": "1.13.1"
|
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"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"lint-staged": {
|
|
|
|
|
"*.{js,jsx,ts,tsx}": "eslint"
|
|
|
|
|
}
|
2019-10-07 10:57:09 +02:00
|
|
|
}
|