chore(xo-server): adapt to monorepo

This commit is contained in:
Julien Fontanet
2018-02-01 14:23:17 +01:00
parent 50b081608f
commit b22914e88a
8 changed files with 1939 additions and 6764 deletions

View File

@@ -9,13 +9,11 @@
"xen-orchestra",
"server"
],
"homepage": "http://github.com/vatesfr/xo-server/",
"bugs": {
"url": "https://github.com/vatesfr/xo-web/issues"
},
"homepage": "https://github.com/vatesfr/xen-orchestra/tree/master/packages/xo-server",
"bugs": "https://github.com/vatesfr/xo-web/issues",
"repository": {
"type": "git",
"url": "git://github.com/vatesfr/xo-server.git"
"url": "https://github.com/vatesfr/xen-orchestra.git"
},
"author": "Julien Fontanet <julien.fontanet@vates.fr>",
"preferGlobal": true,
@@ -121,36 +119,23 @@
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.1.3",
"eslint": "^4.13.1",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"index-modules": "^0.3.0",
"jest": "^22.0.3",
"rimraf": "^2.6.2"
},
"scripts": {
"build": "cross-env NODE_ENV=production babel --source-maps --out-dir=dist/ src/",
"clean": "rimraf dist/",
"commitmsg": "yarn run test",
"dev": "cross-env NODE_ENV=development babel --watch --source-maps --out-dir=dist/ src/",
"dev-test": "jest --bail --watch",
"prebuild": "index-modules src/api src/xapi/mixins src/xo-mixins && yarn run clean",
"predev": "yarn run prebuild",
"prepublishOnly": "yarn run build",
"pretest": "eslint --ignore-path .gitignore --fix .",
"start": "node bin/xo-server",
"test": "jest"
"start": "node bin/xo-server"
},
"babel": {
"plugins": [
@@ -169,13 +154,5 @@
],
"stage-0"
]
},
"jest": {
"collectCoverage": true,
"testEnvironment": "node",
"roots": [
"<rootDir>/src"
],
"testRegex": "\\.spec\\.js$"
}
}