Push what I have I guess

This commit is contained in:
Dane Everitt 2018-06-03 17:40:35 -07:00
parent ee9a34716d
commit c5f6b1a919
No known key found for this signature in database
GPG Key ID: EEA66103B3D71F53
3 changed files with 1309 additions and 621 deletions

View File

@ -1,5 +1,12 @@
{ {
"name": "pterodactyl-panel", "name": "pterodactyl-panel",
"dependencies": {
"vue": "^2.5.7",
"vue-axios": "^2.1.1",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"vuex-i18n": "^1.10.5"
},
"devDependencies": { "devDependencies": {
"autoprefixer": "^8.2.0", "autoprefixer": "^8.2.0",
"axios": "^0.18.0", "axios": "^0.18.0",
@ -33,18 +40,14 @@
"postcss-scss": "^1.0.4", "postcss-scss": "^1.0.4",
"tailwindcss": "^0.5.1", "tailwindcss": "^0.5.1",
"vee-validate": "^2.0.9", "vee-validate": "^2.0.9",
"vue": "^2.5.7",
"vue-axios": "^2.1.1",
"vue-devtools": "^3.1.9", "vue-devtools": "^3.1.9",
"vue-feather-icons": "^4.7.1", "vue-feather-icons": "^4.7.1",
"vue-loader": "^14.2.2", "vue-loader": "^14.2.2",
"vue-mc": "^0.2.4", "vue-mc": "^0.2.4",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.5.16", "vue-template-compiler": "^2.5.16",
"vueify-insert-css": "^1.0.0", "vueify-insert-css": "^1.0.0",
"vuex": "^3.0.1",
"vuex-i18n": "^1.10.5",
"webpack": "^4.4.1", "webpack": "^4.4.1",
"webpack-serve": "^1.0.2",
"webpack-stream": "^4.0.3", "webpack-stream": "^4.0.3",
"yargs": "^11.0.0" "yargs": "^11.0.0"
}, },
@ -55,6 +58,5 @@
"build:components": "./node_modules/gulp-cli/bin/gulp.js components", "build:components": "./node_modules/gulp-cli/bin/gulp.js components",
"build:styles": "./node_modules/gulp-cli/bin/gulp.js styles", "build:styles": "./node_modules/gulp-cli/bin/gulp.js styles",
"build:scripts": "./node_modules/gulp-cli/bin/gulp.js scripts" "build:scripts": "./node_modules/gulp-cli/bin/gulp.js scripts"
}, }
"dependencies": {}
} }

View File

@ -1,6 +1,13 @@
module.exports = { module.exports = {
entry: './resources/assets/scripts/app.js', mode: 'development',
performance: {
hints: false,
},
entry: {
main: './resources/assets/scripts/app.js',
},
output: { output: {
path: '/dist',
filename: 'webpack.build.js', filename: 'webpack.build.js',
}, },
module: { module: {
@ -29,10 +36,8 @@ module.exports = {
}, },
resolve: { resolve: {
alias: { alias: {
// 'vue': 'vue/dist/vue.js'
'vue$': 'vue/dist/vue.esm.js' 'vue$': 'vue/dist/vue.esm.js'
}, },
extensions: ['*', '.js', '.vue', '.json'] extensions: ['*', '.js', '.vue', '.json']
}, },
plugins: [],
}; };

1903
yarn.lock

File diff suppressed because it is too large Load Diff