Skip to content

Commit

Permalink
updated npm packages and replaced owc dev server and browser-sync wit…
Browse files Browse the repository at this point in the history
…h es-dev-server (#235)
  • Loading branch information
nmetulev authored and shweaver-MSFT committed Jun 9, 2020
1 parent 65bd730 commit cb3eeee
Showing 1 changed file with 25 additions and 27 deletions.
52 changes: 25 additions & 27 deletions packages/mgt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,8 @@
],
"scripts": {
"clean": "shx rm -rf dist",
"start": "npm run sass && run-p sass:watch build:watch serve watch",
"serve": "owc-dev-server --port 3333",
"watch": "browser-sync start --no-notify --proxy localhost:3333 --files 'dist/**/*.js, index.html'",
"start": "npm run sass && run-p sass:watch build:watch serve",
"serve": "es-dev-server --port 3000 --node-resolve --open --watch --app-index index.html",
"sass": "gulp sass",
"sass:watch": "gulp watchSass",
"setVersion": "gulp setVersion",
Expand All @@ -49,49 +48,48 @@
},
"dependencies": {
"@microsoft/microsoft-graph-client": "^2.0.0",
"@microsoft/microsoft-graph-types": "^1.10.0",
"@microsoft/microsoft-graph-types": "^1.12.0",
"@microsoft/microsoft-graph-types-beta": "microsoftgraph/msgraph-typescript-typings#beta",
"lit-element": "^2.2.1",
"msal": "1.1.3",
"office-ui-fabric-core": "10.1.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-typescript": "^7.3.3",
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-decorators": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/preset-env": "^7.7.6",
"@babel/preset-typescript": "^7.7.4",
"@types/jest": "^24.0.11",
"@webcomponents/webcomponentsjs": "^2.2.10",
"babel-polyfill": "6.5.0",
"browser-sync": "^2.26.7",
"@webcomponents/webcomponentsjs": "^2.4.0",
"babel-polyfill": "6.26.0",
"cpx": "^1.5.0",
"gulp": "^4.0.0",
"gulp-append-prepend": "^1.0.6",
"gulp": "^4.0.2",
"gulp-append-prepend": "^1.0.8",
"gulp-header-license": "^1.0.9",
"gulp-rename": "^1.4.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^4.0.2",
"gulp-util": "^3.0.8",
"husky": "^1.3.1",
"husky": "^3.1.0",
"jest": "^24.5.0",
"jest-junit": "^6.3.0",
"npm-run-all": "^4.1.5",
"owc-dev-server": "^0.2.1",
"es-dev-server": "^1.31.1",
"prettier": "1.17.0",
"rollup": "^1.7.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-babel-minify": "^8.0.0",
"rollup-plugin-commonjs": "^9.2.2",
"rollup": "^1.27.10",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-babel-minify": "^9.1.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-terser": "^5.1.3",
"rollup-plugin-typescript": "^1.0.1",
"sass": "^1.17.3",
"sass": "^1.23.7",
"shx": "^0.3.2",
"ts-jest": "^24.0.1",
"tslint": "^5.18.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.4",
"whatwg-fetch": "^3.0.0"
Expand All @@ -106,7 +104,7 @@
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier:write"
"pre-commit": "npm run prettier:check"
}
},
"prettier": {
Expand Down

0 comments on commit cb3eeee

Please sign in to comment.