mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-12-27 02:39:46 +01:00
32 lines
907 B
JSON
32 lines
907 B
JSON
{
|
|
"private": true,
|
|
"workspaces": [
|
|
"scm-ui/*",
|
|
"scm-plugins/*"
|
|
],
|
|
"scripts": {
|
|
"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",
|
|
"test": "lerna run --scope '@scm-manager/ui-*' test",
|
|
"serve": "webpack-dev-server --mode=development --config=scm-ui/ui-scripts/src/webpack.config.js",
|
|
"deploy": "ui-scripts publish"
|
|
},
|
|
"devDependencies": {
|
|
"lerna": "^3.17.0"
|
|
},
|
|
"resolutions": {
|
|
"babel-core": "7.0.0-bridge.0",
|
|
"gitdiff-parser": "https://github.com/scm-manager/gitdiff-parser#6baa7278824ecd17a199d842ca720d0453f68982"
|
|
},
|
|
"babel": {
|
|
"presets": [
|
|
"@scm-manager/babel-preset"
|
|
]
|
|
},
|
|
"jest": {
|
|
"preset": "@scm-manager/jest-preset"
|
|
},
|
|
"prettier": "@scm-manager/prettier-config",
|
|
"dependencies": {}
|
|
}
|