forked from bugy/script-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bugy#282 migrated index page to vue-cli structure + got rid of jQuery…
… in production
- Loading branch information
1 parent
38f6bb3
commit 98cbf4c
Showing
51 changed files
with
297 additions
and
236 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module.exports = { | ||
presets: [ | ||
'@vue/cli-plugin-babel/preset' | ||
] | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,63 +1,52 @@ | ||
{ | ||
"name": "script-server", | ||
"version": "1.15.0", | ||
"private": true, | ||
"dependencies": { | ||
"@babel/runtime": "^7.9.2", | ||
"axios": "^0.19.2", | ||
"core-js": "^3.6.4", | ||
"jquery": "^3.4.1", | ||
"vue": "^2.6.11", | ||
"vue-router": "^3.1.5", | ||
"vuex": "^3.1.2", | ||
"axios": "^0.19.2", | ||
"marked": "^0.7.0", | ||
"material-design-icons": "^3.0.1", | ||
"materialize-css": "^1.0.0", | ||
"typeface-roboto": "0.0.54", | ||
"vue": "^2.6.11", | ||
"vue-router": "^3.1.3", | ||
"vuex": "^3.1.2" | ||
"typeface-roboto": "0.0.75" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.7.7", | ||
"@babel/plugin-transform-runtime": "^7.7.6", | ||
"@babel/preset-env": "^7.7.7", | ||
"@stryker-mutator/babel-transpiler": "^1.3.1", | ||
"@stryker-mutator/core": "^1.3.1", | ||
"@stryker-mutator/javascript-mutator": "^1.3.1", | ||
"@stryker-mutator/karma-runner": "^1.3.1", | ||
"@stryker-mutator/mocha-framework": "^1.3.1", | ||
"@stryker-mutator/webpack-transpiler": "^1.3.1", | ||
"@vue/test-utils": "1.0.0-beta.29", | ||
"@vue/cli-plugin-babel": "~4.2.0", | ||
"@vue/cli-plugin-e2e-nightwatch": "~4.2.0", | ||
"@vue/cli-plugin-router": "~4.2.0", | ||
"@vue/cli-plugin-unit-mocha": "~4.2.0", | ||
"@vue/cli-plugin-vuex": "~4.2.0", | ||
"@vue/cli-service": "~4.2.0", | ||
"@vue/test-utils": "1.0.0-beta.31", | ||
"axios-mock-adapter": "^1.18.1", | ||
"babel-loader": "^8.1.0", | ||
"babel-plugin-rewire": "^1.2.0", | ||
"chai": "^4.2.0", | ||
"copy-webpack-plugin": "^4.6.0", | ||
"css-loader": "^2.1.0", | ||
"file-loader": "^3.0.0", | ||
"html-webpack-plugin": "^3.2.0", | ||
"karma": "^4.4.1", | ||
"karma-chrome-launcher": "^2.2.0", | ||
"karma-mocha": "^1.3.0", | ||
"karma-sourcemap-loader": "^0.3.7", | ||
"karma-spec-reporter": "0.0.32", | ||
"karma-webpack": "^4.0.2", | ||
"mini-css-extract-plugin": "^0.5.0", | ||
"mocha": "^5.2.0", | ||
"chai": "^4.1.2", | ||
"chromedriver": "80", | ||
"geckodriver": "^1.19.1", | ||
"jquery": "^3.4.1", | ||
"mock-socket": "^9.0.2", | ||
"sinon": "^7.5.0", | ||
"style-loader": "^0.23.1", | ||
"url-loader": "^2.3.0", | ||
"vue-loader": "^15.8.3", | ||
"vue-style-loader": "^4.1.2", | ||
"vue-template-compiler": "^2.6.11", | ||
"webpack": "^4.42.1", | ||
"webpack-cli": "^3.3.10", | ||
"webpack-dev-server": "^3.10.1", | ||
"webpack-merge": "^4.2.2" | ||
"http-proxy-middleware": "^1.0.3" | ||
}, | ||
"scripts": { | ||
"start:dev": "webpack-dev-server --config webpack.dev.js", | ||
"build:prod": "webpack --mode production --config webpack.prod.js", | ||
"build:dev": "webpack --mode development --config webpack.dev.js", | ||
"test": "karma start tests/karma.conf.js", | ||
"serve": "vue-cli-service serve", | ||
"build": "vue-cli-service build", | ||
"test:unit": "vue-cli-service test:unit", | ||
"test:e2e": "vue-cli-service test:e2e", | ||
"stryker": "stryker run tests/stryker.conf.js" | ||
} | ||
}, | ||
"browserslist": [ | ||
"> 1%", | ||
"last 2 versions" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.