Skip to content

Commit 3a59ec4

Browse files
authored
updated npm packages and replaced owc dev server and browser-sync with es-dev-server (#235)
1 parent c21b2a4 commit 3a59ec4

File tree

1 file changed

+25
-27
lines changed

1 file changed

+25
-27
lines changed

package.json

Lines changed: 25 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,8 @@
2626
],
2727
"scripts": {
2828
"clean": "shx rm -rf dist",
29-
"start": "npm run sass && run-p sass:watch build:watch serve watch",
30-
"serve": "owc-dev-server --port 3333",
31-
"watch": "browser-sync start --no-notify --proxy localhost:3333 --files 'dist/**/*.js, index.html'",
29+
"start": "npm run sass && run-p sass:watch build:watch serve",
30+
"serve": "es-dev-server --port 3000 --node-resolve --open --watch --app-index index.html",
3231
"sass": "gulp sass",
3332
"sass:watch": "gulp watchSass",
3433
"setVersion": "gulp setVersion",
@@ -49,49 +48,48 @@
4948
},
5049
"dependencies": {
5150
"@microsoft/microsoft-graph-client": "^2.0.0",
52-
"@microsoft/microsoft-graph-types": "^1.10.0",
51+
"@microsoft/microsoft-graph-types": "^1.12.0",
5352
"@microsoft/microsoft-graph-types-beta": "microsoftgraph/msgraph-typescript-typings#beta",
5453
"lit-element": "^2.2.1",
5554
"msal": "1.1.3",
5655
"office-ui-fabric-core": "10.1.0"
5756
},
5857
"devDependencies": {
59-
"@babel/core": "^7.4.3",
60-
"@babel/plugin-proposal-class-properties": "^7.4.0",
61-
"@babel/plugin-proposal-decorators": "^7.4.0",
62-
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
63-
"@babel/preset-env": "^7.4.3",
64-
"@babel/preset-typescript": "^7.3.3",
58+
"@babel/core": "^7.7.5",
59+
"@babel/plugin-proposal-class-properties": "^7.7.4",
60+
"@babel/plugin-proposal-decorators": "^7.7.4",
61+
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
62+
"@babel/preset-env": "^7.7.6",
63+
"@babel/preset-typescript": "^7.7.4",
6564
"@types/jest": "^24.0.11",
66-
"@webcomponents/webcomponentsjs": "^2.2.10",
67-
"babel-polyfill": "6.5.0",
68-
"browser-sync": "^2.26.7",
65+
"@webcomponents/webcomponentsjs": "^2.4.0",
66+
"babel-polyfill": "6.26.0",
6967
"cpx": "^1.5.0",
70-
"gulp": "^4.0.0",
71-
"gulp-append-prepend": "^1.0.6",
68+
"gulp": "^4.0.2",
69+
"gulp-append-prepend": "^1.0.8",
7270
"gulp-header-license": "^1.0.9",
73-
"gulp-rename": "^1.4.0",
71+
"gulp-rename": "^2.0.0",
7472
"gulp-sass": "^4.0.2",
7573
"gulp-util": "^3.0.8",
76-
"husky": "^1.3.1",
74+
"husky": "^3.1.0",
7775
"jest": "^24.5.0",
7876
"jest-junit": "^6.3.0",
7977
"npm-run-all": "^4.1.5",
80-
"owc-dev-server": "^0.2.1",
78+
"es-dev-server": "^1.31.1",
8179
"prettier": "1.17.0",
82-
"rollup": "^1.7.3",
83-
"rollup-plugin-babel": "^4.3.2",
84-
"rollup-plugin-babel-minify": "^8.0.0",
85-
"rollup-plugin-commonjs": "^9.2.2",
80+
"rollup": "^1.27.10",
81+
"rollup-plugin-babel": "^4.3.3",
82+
"rollup-plugin-babel-minify": "^9.1.1",
83+
"rollup-plugin-commonjs": "^10.1.0",
8684
"rollup-plugin-json": "^4.0.0",
87-
"rollup-plugin-node-resolve": "^4.0.1",
85+
"rollup-plugin-node-resolve": "^5.2.0",
8886
"rollup-plugin-postcss": "^2.0.3",
89-
"rollup-plugin-terser": "^4.0.4",
87+
"rollup-plugin-terser": "^5.1.3",
9088
"rollup-plugin-typescript": "^1.0.1",
91-
"sass": "^1.17.3",
89+
"sass": "^1.23.7",
9290
"shx": "^0.3.2",
9391
"ts-jest": "^24.0.1",
94-
"tslint": "^5.18.0",
92+
"tslint": "^5.20.1",
9593
"tslint-config-prettier": "^1.18.0",
9694
"typescript": "^3.4.4",
9795
"whatwg-fetch": "^3.0.0"
@@ -106,7 +104,7 @@
106104
},
107105
"husky": {
108106
"hooks": {
109-
"pre-commit": "npm run prettier:write"
107+
"pre-commit": "npm run prettier:check"
110108
}
111109
},
112110
"prettier": {

0 commit comments

Comments
 (0)