Files
SCM-Manager/package.json

32 lines
907 B
JSON
Raw Normal View History

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",
2019-10-14 11:06:23 +02:00
"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"
2019-10-07 10:57:09 +02:00
},
"devDependencies": {
2019-10-14 16:00:50 +02:00
"lerna": "^3.17.0"
2019-10-09 10:19:46 +02:00
},
"resolutions": {
"babel-core": "7.0.0-bridge.0",
2019-10-16 10:03:13 +02:00
"gitdiff-parser": "https://github.com/scm-manager/gitdiff-parser#6baa7278824ecd17a199d842ca720d0453f68982"
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",
2019-10-09 10:19:46 +02:00
"dependencies": {}
2019-10-07 10:57:09 +02:00
}