diff --git a/site/plugins/admin/CHANGELOG.md b/site/plugins/admin/CHANGELOG.md
deleted file mode 100755
index 40510895..00000000
--- a/site/plugins/admin/CHANGELOG.md
+++ /dev/null
@@ -1,2 +0,0 @@
-# v0.0.0, 2018-XX-XX
-* Initial release
diff --git a/site/plugins/admin/LICENSE.txt b/site/plugins/admin/LICENSE.txt
deleted file mode 100755
index 3f865be1..00000000
--- a/site/plugins/admin/LICENSE.txt
+++ /dev/null
@@ -1,21 +0,0 @@
-The MIT License (MIT)
-
-Copyright (c) 2018 Flextype
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
diff --git a/site/plugins/admin/README.md b/site/plugins/admin/README.md
deleted file mode 100755
index a3b085bf..00000000
--- a/site/plugins/admin/README.md
+++ /dev/null
@@ -1 +0,0 @@
-# Admin Plugin for [Flextype](http://flextype.org/)
diff --git a/site/plugins/admin/admin.php b/site/plugins/admin/admin.php
deleted file mode 100755
index b423eebe..00000000
--- a/site/plugins/admin/admin.php
+++ /dev/null
@@ -1,145 +0,0 @@
-
- * @link http://flextype.org
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-namespace Flextype;
-
-use Url;
-use Arr;
-use Response;
-use Request;
-use Symfony\Component\Yaml\Yaml;
-
-//
-// Add listner for onPageBeforeRender event
-//
-if (Url::getUriSegment(0) == 'admin') {
- Events::addListener('onPageBeforeRender', function () {
- Admin::instance();
- });
-}
-
-
-class Admin {
-
- /**
- * An instance of the Admin class
- *
- * @var object
- * @access protected
- */
- protected static $instance = null;
-
- /**
- * Is logged in
- *
- * @var bool
- * @access protected
- */
- protected static $isLoggedIn = false;
-
- /**
- * Protected clone method to enforce singleton behavior.
- *
- * @access protected
- */
- protected function __clone()
- {
- // Nothing here.
- }
-
- /**
- * Protected constructor since this is a static class.
- *
- * @access protected
- */
- protected function __construct()
- {
- static::init();
- }
-
- protected static function init()
- {
- if (static::isLoggedIn()) {
- static::getAdminPage();
- } else {
- static::getAuthPage();
- }
-
- Request::shutdown();
- }
-
- protected static function getAdminPage()
- {
- switch (Url::getUriSegment(1)) {
- case 'pages':
- static::getPagesManagerPage();
- break;
- case 'settings':
- static::getSettingsPage();
- break;
- default:
- static::getDashboardPage();
- break;
- }
- }
-
- protected static function getPagesManagerPage()
- {
- include 'views/pages.php';
- }
-
- protected static function getSettingsPage()
- {
- include 'views/settings.php';
- }
-
- protected static function getDashboardPage()
- {
- include 'views/dashboard.php';
- }
-
- protected static function getAuthPage()
- {
-
- $login = Request::post('login');
-
- if (isset($login)) {
- if (Flextype::filesystem()->exists($_user_file = ACCOUNTS_PATH . '/' . Request::post('username') . '.yml')) {
- $user_file = Yaml::parseFile($_user_file);
-
-
- }
-
- var_dump($user_file);
- }
-
- include 'views/login.php';
- }
-
- public static function isLoggedIn() : bool
- {
- return static::$isLoggedIn;
- }
-
- /**
- * Return the Admin instance.
- * Create it if it's not already created.
- *
- * @access public
- * @return object
- */
- public static function instance()
- {
- return !isset(self::$instance) and self::$instance = new Admin();
- }
-}
diff --git a/site/plugins/admin/admin.yml b/site/plugins/admin/admin.yml
deleted file mode 100755
index 31f462ab..00000000
--- a/site/plugins/admin/admin.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-name: Admin
-version: 0.0.0
-description: "Admin plugin for Flextype"
-author:
- name: Sergey Romanenko
- email: awilum@yandex.ru
- url: http://flextype.org
-homepage: https://github.com/flextype/flextype
-bugs: https://github.com/flextype/flextype/issues
-license: MIT
-
-# Plugin settings
-enabled: true
diff --git a/site/plugins/admin/css/auth.css b/site/plugins/admin/css/auth.css
deleted file mode 100644
index bf07b4d8..00000000
--- a/site/plugins/admin/css/auth.css
+++ /dev/null
@@ -1,54 +0,0 @@
-html,
-body {
- height: 100%;
-}
-
-body {
- display: -ms-flexbox;
- display: -webkit-box;
- display: flex;
- -ms-flex-align: center;
- -ms-flex-pack: center;
- -webkit-box-align: center;
- align-items: center;
- -webkit-box-pack: center;
- justify-content: center;
- padding-top: 40px;
- padding-bottom: 40px;
- background-color: #f5f5f5;
-}
-
-.form-signin {
- width: 100%;
- max-width: 330px;
- padding: 15px;
- margin: 0 auto;
-}
-
-.form-signin .checkbox {
- font-weight: 400;
-}
-
-.form-signin .form-control {
- position: relative;
- box-sizing: border-box;
- height: auto;
- padding: 10px;
- font-size: 16px;
-}
-
-.form-signin .form-control:focus {
- z-index: 2;
-}
-
-.form-signin input[type="input"] {
- margin-bottom: -1px;
- border-bottom-right-radius: 0;
- border-bottom-left-radius: 0;
-}
-
-.form-signin input[type="password"] {
- margin-bottom: 10px;
- border-top-left-radius: 0;
- border-top-right-radius: 0;
-}
diff --git a/site/plugins/admin/languages/en.yml b/site/plugins/admin/languages/en.yml
deleted file mode 100755
index 8aab8098..00000000
--- a/site/plugins/admin/languages/en.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-admin: "Admin"
-admin_username: "Username"
-admin_password: "Password"
-admin_login: "Login"
diff --git a/site/plugins/admin/languages/ru.yml b/site/plugins/admin/languages/ru.yml
deleted file mode 100755
index da5c1c74..00000000
--- a/site/plugins/admin/languages/ru.yml
+++ /dev/null
@@ -1 +0,0 @@
-admin: "Admin"
diff --git a/site/plugins/admin/node_modules/bootstrap/LICENSE b/site/plugins/admin/node_modules/bootstrap/LICENSE
deleted file mode 100644
index 86f4b8ca..00000000
--- a/site/plugins/admin/node_modules/bootstrap/LICENSE
+++ /dev/null
@@ -1,22 +0,0 @@
-The MIT License (MIT)
-
-Copyright (c) 2011-2018 Twitter, Inc.
-Copyright (c) 2011-2018 The Bootstrap Authors
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
diff --git a/site/plugins/admin/node_modules/bootstrap/README.md b/site/plugins/admin/node_modules/bootstrap/README.md
deleted file mode 100644
index 6734d355..00000000
--- a/site/plugins/admin/node_modules/bootstrap/README.md
+++ /dev/null
@@ -1,167 +0,0 @@
-
-
-
-
-
-
Bootstrap
-
-
- Sleek, intuitive, and powerful front-end framework for faster and easier web development.
-
- Explore Bootstrap docs »
-
-
- Bootstrap Themes
- ·
- Job Board
- ·
- Blog
-
-
-
-
-
-## Table of contents
-
-- [Quick start](#quick-start)
-- [Status](#status)
-- [What's included](#whats-included)
-- [Bugs and feature requests](#bugs-and-feature-requests)
-- [Documentation](#documentation)
-- [Contributing](#contributing)
-- [Community](#community)
-- [Versioning](#versioning)
-- [Creators](#creators)
-- [Copyright and license](#copyright-and-license)
-
-## Quick start
-
-Several quick start options are available:
-
-- [Download the latest release.](https://github.com/twbs/bootstrap/archive/v4.0.0.zip)
-- Clone the repo: `git clone https://github.com/twbs/bootstrap.git`
-- Install with [npm](https://www.npmjs.com/): `npm install bootstrap`
-- Install with [yarn](https://yarnpkg.com/): `yarn add bootstrap@4.0.0`
-- Install with [Composer](https://getcomposer.org/): `composer require twbs/bootstrap:4.0.0`
-- Install with [NuGet](https://www.nuget.org/): CSS: `Install-Package bootstrap -Pre` Sass: `Install-Package bootstrap.sass -Pre` (`-Pre` is only required until Bootstrap v4 has a stable release).
-
-Read the [Getting started page](https://getbootstrap.com/docs/4.0/getting-started/introduction/) for information on the framework contents, templates and examples, and more.
-
-## Status
-
-[](https://bootstrap-slack.herokuapp.com/)
-[](https://travis-ci.org/twbs/bootstrap)
-[](https://www.npmjs.com/package/bootstrap)
-[](https://rubygems.org/gems/bootstrap)
-[](https://atmospherejs.com/twbs/bootstrap)
-[](https://packagist.org/packages/twbs/bootstrap)
-[](https://www.nuget.org/packages/bootstrap/absoluteLatest)
-[](https://david-dm.org/twbs/bootstrap?type=peer)
-[](https://david-dm.org/twbs/bootstrap?type=dev)
-[](https://github.com/twbs/bootstrap/tree/v4-dev/dist/css/bootstrap.min.css)
-[](https://github.com/twbs/bootstrap/tree/v4-dev/dist/js/bootstrap.min.js)
-
-[](https://saucelabs.com/u/bootstrap)
-
-## What's included
-
-Within the download you'll find the following directories and files, logically grouping common assets and providing both compiled and minified variations. You'll see something like this:
-
-```
-bootstrap/
-├── css/
-│ ├── bootstrap.css
-│ ├── bootstrap.css.map
-│ ├── bootstrap.min.css
-│ ├── bootstrap.min.css.map
-│ ├── bootstrap-grid.css
-│ ├── bootstrap-grid.css.map
-│ ├── bootstrap-grid.min.css
-│ ├── bootstrap-grid.min.css.map
-│ ├── bootstrap-reboot.css
-│ ├── bootstrap-reboot.css.map
-│ ├── bootstrap-reboot.min.css
-│ └── bootstrap-reboot.min.css.map
-└── js/
- ├── bootstrap.bundle.js
- ├── bootstrap.bundle.min.js
- ├── bootstrap.js
- └── bootstrap.min.js
-```
-
-We provide compiled CSS and JS (`bootstrap.*`), as well as compiled and minified CSS and JS (`bootstrap.min.*`). CSS [source maps](https://developers.google.com/web/tools/chrome-devtools/debug/readability/source-maps) (`bootstrap.*.map`) are available for use with certain browsers' developer tools. Bundled JS files (`bootstrap.bundle.js` and minified `bootstrap.bundle.min.js`) include [Popper](https://popper.js.org/), but not [jQuery](https://jquery.com/).
-
-
-## Bugs and feature requests
-
-Have a bug or a feature request? Please first read the [issue guidelines](https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md#using-the-issue-tracker) and search for existing and closed issues. If your problem or idea is not addressed yet, [please open a new issue](https://github.com/twbs/bootstrap/issues/new).
-
-
-## Documentation
-
-Bootstrap's documentation, included in this repo in the root directory, is built with [Jekyll](https://jekyllrb.com/) and publicly hosted on GitHub Pages at . The docs may also be run locally.
-
-Documentation search is powered by [Algolia's DocSearch](https://community.algolia.com/docsearch/). Working on our search? Be sure to set `debug: true` in the `_scripts.html` include.
-
-### Running documentation locally
-
-1. Run through the [tooling setup](https://getbootstrap.com/docs/4.0/getting-started/build-tools/#tooling-setup) to install Jekyll (the site builder) and other Ruby dependencies with `bundle install`.
-2. Run `npm install` to install Node.js dependencies.
-3. Run `npm run test` (or a specific NPM script) to rebuild distributed CSS and JavaScript files, as well as our docs assets.
-4. From the root `/bootstrap` directory, run `npm run docs-serve` in the command line.
-5. Open `http://localhost:9001` in your browser, and voilà.
-
-Learn more about using Jekyll by reading its [documentation](https://jekyllrb.com/docs/home/).
-
-### Documentation for previous releases
-
-- For v2.3.2:
-- For v3.3.x:
-
-[Previous releases](https://github.com/twbs/bootstrap/releases) and their documentation are also available for download.
-
-
-## Contributing
-
-Please read through our [contributing guidelines](https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md). Included are directions for opening issues, coding standards, and notes on development.
-
-Moreover, if your pull request contains JavaScript patches or features, you must include [relevant unit tests](https://github.com/twbs/bootstrap/tree/master/js/tests). All HTML and CSS should conform to the [Code Guide](https://github.com/mdo/code-guide), maintained by [Mark Otto](https://github.com/mdo).
-
-Editor preferences are available in the [editor config](https://github.com/twbs/bootstrap/blob/master/.editorconfig) for easy use in common text editors. Read more and download plugins at .
-
-
-## Community
-
-Get updates on Bootstrap's development and chat with the project maintainers and community members.
-
-- Follow [@getbootstrap on Twitter](https://twitter.com/getbootstrap).
-- Read and subscribe to [The Official Bootstrap Blog](https://blog.getbootstrap.com/).
-- Join [the official Slack room](https://bootstrap-slack.herokuapp.com/).
-- Chat with fellow Bootstrappers in IRC. On the `irc.freenode.net` server, in the `##bootstrap` channel.
-- Implementation help may be found at Stack Overflow (tagged [`bootstrap-4`](https://stackoverflow.com/questions/tagged/bootstrap-4)).
-- Developers should use the keyword `bootstrap` on packages which modify or add to the functionality of Bootstrap when distributing through [npm](https://www.npmjs.com/browse/keyword/bootstrap) or similar delivery mechanisms for maximum discoverability.
-
-
-## Versioning
-
-For transparency into our release cycle and in striving to maintain backward compatibility, Bootstrap is maintained under [the Semantic Versioning guidelines](http://semver.org/). Sometimes we screw up, but we'll adhere to those rules whenever possible.
-
-See [the Releases section of our GitHub project](https://github.com/twbs/bootstrap/releases) for changelogs for each release version of Bootstrap. Release announcement posts on [the official Bootstrap blog](https://blog.getbootstrap.com/) contain summaries of the most noteworthy changes made in each release.
-
-
-## Creators
-
-**Mark Otto**
-
--
--
-
-**Jacob Thornton**
-
--
--
-
-
-## Copyright and license
-
-Code and documentation copyright 2011-2018 the [Bootstrap Authors](https://github.com/twbs/bootstrap/graphs/contributors) and [Twitter, Inc.](https://twitter.com) Code released under the [MIT License](https://github.com/twbs/bootstrap/blob/master/LICENSE). Docs released under [Creative Commons](https://github.com/twbs/bootstrap/blob/master/docs/LICENSE).
diff --git a/site/plugins/admin/node_modules/bootstrap/package.json b/site/plugins/admin/node_modules/bootstrap/package.json
deleted file mode 100644
index aa2455d2..00000000
--- a/site/plugins/admin/node_modules/bootstrap/package.json
+++ /dev/null
@@ -1,241 +0,0 @@
-{
- "_from": "bootstrap@^4.0.0",
- "_id": "bootstrap@4.0.0",
- "_inBundle": false,
- "_integrity": "sha512-gulJE5dGFo6Q61V/whS6VM4WIyrlydXfCgkE+Gxe5hjrJ8rXLLZlALq7zq2RPhOc45PSwQpJkrTnc2KgD6cvmA==",
- "_location": "/bootstrap",
- "_phantomChildren": {},
- "_requested": {
- "type": "range",
- "registry": true,
- "raw": "bootstrap@^4.0.0",
- "name": "bootstrap",
- "escapedName": "bootstrap",
- "rawSpec": "^4.0.0",
- "saveSpec": null,
- "fetchSpec": "^4.0.0"
- },
- "_requiredBy": [
- "#DEV:/"
- ],
- "_resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.0.0.tgz",
- "_shasum": "ceb03842c145fcc1b9b4e15da2a05656ba68469a",
- "_spec": "bootstrap@^4.0.0",
- "_where": "/Applications/MAMP/htdocs/flextype/site/plugins/admin",
- "author": {
- "name": "The Bootstrap Authors",
- "url": "https://github.com/twbs/bootstrap/graphs/contributors"
- },
- "browserslist": [
- "last 1 major version",
- ">= 1%",
- "Chrome >= 45",
- "Firefox >= 38",
- "Edge >= 12",
- "Explorer >= 10",
- "iOS >= 9",
- "Safari >= 9",
- "Android >= 4.4",
- "Opera >= 30"
- ],
- "bugs": {
- "url": "https://github.com/twbs/bootstrap/issues"
- },
- "bundleDependencies": false,
- "bundlesize": [
- {
- "path": "./dist/css/bootstrap-grid.css",
- "maxSize": "5 kB"
- },
- {
- "path": "./dist/css/bootstrap-grid.min.css",
- "maxSize": "5 kB"
- },
- {
- "path": "./dist/css/bootstrap-reboot.css",
- "maxSize": "3 kB"
- },
- {
- "path": "./dist/css/bootstrap-reboot.min.css",
- "maxSize": "3 kB"
- },
- {
- "path": "./dist/css/bootstrap.css",
- "maxSize": "25 kB"
- },
- {
- "path": "./dist/css/bootstrap.min.css",
- "maxSize": "21 kB"
- },
- {
- "path": "./dist/js/bootstrap.bundle.js",
- "maxSize": "45 kB"
- },
- {
- "path": "./dist/js/bootstrap.bundle.min.js",
- "maxSize": "25 kB"
- },
- {
- "path": "./dist/js/bootstrap.js",
- "maxSize": "20 kB"
- },
- {
- "path": "./dist/js/bootstrap.min.js",
- "maxSize": "15 kB"
- }
- ],
- "contributors": [
- {
- "name": "Twitter, Inc."
- }
- ],
- "dependencies": {},
- "deprecated": false,
- "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
- "devDependencies": {
- "@babel/cli": "7.0.0-beta.37",
- "@babel/core": "7.0.0-beta.37",
- "@babel/preset-env": "7.0.0-beta.37",
- "autoprefixer": "^7.2.4",
- "babel-eslint": "^8.2.1",
- "babel-plugin-transform-es2015-modules-strip": "^0.1.1",
- "bundlesize": "^0.15.3",
- "clean-css-cli": "^4.1.10",
- "cross-env": "^5.1.3",
- "eslint": "^4.15.0",
- "eslint-plugin-compat": "^2.1.0",
- "glob": "^7.1.2",
- "htmllint-cli": "^0.0.6",
- "jsunitsaucelabs": "^1.3.0",
- "karma": "^2.0.0",
- "karma-chrome-launcher": "^2.2.0",
- "karma-detect-browsers": "^2.2.6",
- "karma-firefox-launcher": "^1.1.0",
- "karma-qunit": "^1.2.1",
- "node-sass": "^4.7.2",
- "nodemon": "^1.14.10",
- "npm-run-all": "^4.1.2",
- "popper.js": "^1.12.9",
- "postcss-cli": "^4.1.1",
- "qunitjs": "^2.4.1",
- "rollup": "^0.53.4",
- "rollup-plugin-babel": "4.0.0-beta.0",
- "rollup-plugin-node-resolve": "^3.0.2",
- "shelljs": "^0.7.8",
- "shx": "^0.2.2",
- "sri-toolbox": "^0.2.0",
- "stylelint": "^8.4.0",
- "stylelint-config-recommended-scss": "^3.0.0",
- "stylelint-config-standard": "^18.0.0",
- "stylelint-order": "^0.8.0",
- "stylelint-scss": "^2.2.0",
- "uglify-js": "^3.3.5",
- "vnu-jar": "^17.11.1",
- "workbox-build": "^2.1.2"
- },
- "engines": {
- "node": ">=6"
- },
- "files": [
- "dist/",
- "js/{src,dist}/",
- "scss/"
- ],
- "homepage": "https://getbootstrap.com",
- "jspm": {
- "registry": "npm",
- "main": "js/bootstrap",
- "directories": {
- "lib": "dist"
- },
- "shim": {
- "js/bootstrap": {
- "deps": [
- "jquery",
- "popper.js"
- ],
- "exports": "$"
- }
- },
- "dependencies": {},
- "peerDependencies": {
- "jquery": "1.9.1 - 3",
- "popper.js": "^1.12.9"
- }
- },
- "keywords": [
- "css",
- "sass",
- "mobile-first",
- "responsive",
- "front-end",
- "framework",
- "web"
- ],
- "license": "MIT",
- "main": "dist/js/bootstrap",
- "name": "bootstrap",
- "peerDependencies": {
- "jquery": "1.9.1 - 3",
- "popper.js": "^1.12.9"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/twbs/bootstrap.git"
- },
- "sass": "scss/bootstrap.scss",
- "scripts": {
- "bundlesize": "bundlesize",
- "css": "npm-run-all --parallel css-lint* css-compile* --sequential css-prefix* css-minify*",
- "css-compile": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 scss/bootstrap.scss dist/css/bootstrap.css && node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 scss/bootstrap-grid.scss dist/css/bootstrap-grid.css && node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 scss/bootstrap-reboot.scss dist/css/bootstrap-reboot.css",
- "css-compile-docs": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 assets/scss/docs.scss assets/css/docs.min.css",
- "css-docs": "npm-run-all --parallel css-lint-docs css-compile-docs --sequential css-prefix-docs css-minify-docs",
- "css-lint": "stylelint --syntax scss \"scss/**/*.scss\"",
- "css-lint-docs": "stylelint --syntax scss \"assets/scss/*.scss\" && stylelint \"docs/**/*.css\"",
- "css-lint-vars": "node build/lint-vars.js scss/ assets/scss/",
- "css-main": "npm-run-all --parallel css-lint css-compile --sequential css-prefix css-minify",
- "css-minify": "cleancss --level 1 --source-map --source-map-inline-sources --output dist/css/bootstrap.min.css dist/css/bootstrap.css && cleancss --level 1 --source-map --source-map-inline-sources --output dist/css/bootstrap-grid.min.css dist/css/bootstrap-grid.css && cleancss --level 1 --source-map --source-map-inline-sources --output dist/css/bootstrap-reboot.min.css dist/css/bootstrap-reboot.css",
- "css-minify-docs": "cleancss --level 1 --source-map --source-map-inline-sources --output assets/css/docs.min.css assets/css/docs.min.css",
- "css-prefix": "postcss --config build/postcss.config.js --replace \"dist/css/*.css\" \"!dist/css/*.min.css\"",
- "css-prefix-docs": "postcss --config build/postcss.config.js --replace \"assets/css/docs.min.css\" \"docs/**/*.css\"",
- "dist": "npm-run-all --parallel css js",
- "docs": "npm-run-all --parallel css-docs js-docs --sequential docs-compile docs-lint",
- "docs-compile": "bundle exec jekyll build",
- "docs-github": "shx echo \"github: true\" > twbsconfig.yml && npm run docs-compile -- --config _config.yml,twbsconfig.yml && shx rm ./twbsconfig.yml",
- "docs-github-serve": "bundle exec jekyll serve --skip-initial-build --no-watch",
- "docs-lint": "npm-run-all docs-lint-*",
- "docs-lint-htmllint": "htmllint --rc build/.htmllintrc \"_gh_pages/**/*.html\" \"js/tests/**/*.html\"",
- "docs-lint-vnu-jar": "node build/vnu-jar.js",
- "docs-serve": "bundle exec jekyll serve",
- "docs-upload-preview": "build/upload-preview.sh",
- "docs-workbox-precache": "node build/workbox.js",
- "js": "npm-run-all js-lint* js-compile js-minify",
- "js-compile": "npm-run-all --parallel js-compile-*",
- "js-compile-bundle": "rollup --environment BUNDLE:true --config build/rollup.config.js --sourcemap",
- "js-compile-plugins": "cross-env PLUGINS=true babel js/src/ --out-dir js/dist/ --source-maps",
- "js-compile-standalone": "rollup --environment BUNDLE:false --config build/rollup.config.js --sourcemap",
- "js-docs": "npm-run-all js-lint-docs js-minify-docs",
- "js-lint": "eslint js/ build/",
- "js-lint-docs": "eslint assets/js/ docs/ sw.js",
- "js-main": "npm-run-all js-lint js-compile js-minify",
- "js-minify": "npm-run-all --parallel js-minify-*",
- "js-minify-bundle": "uglifyjs --compress typeofs=false --mangle --comments \"/^!/\" --source-map \"content=dist/js/bootstrap.bundle.js.map,includeSources,url=bootstrap.bundle.min.js.map\" --output dist/js/bootstrap.bundle.min.js dist/js/bootstrap.bundle.js",
- "js-minify-docs": "uglifyjs --mangle --comments \"/^!/\" --output assets/js/docs.min.js assets/js/vendor/anchor.min.js assets/js/vendor/clipboard.min.js assets/js/vendor/holder.min.js \"assets/js/src/*.js\"",
- "js-minify-standalone": "uglifyjs --compress typeofs=false --mangle --comments \"/^!/\" --source-map \"content=dist/js/bootstrap.js.map,includeSources,url=bootstrap.min.js.map\" --output dist/js/bootstrap.min.js dist/js/bootstrap.js",
- "js-test": "npm-run-all --parallel js-test-karma*",
- "js-test-cloud": "ruby -r webrick -e \"s = WEBrick::HTTPServer.new(:Port => 3000, :DocumentRoot => Dir.pwd, :Logger => WEBrick::Log.new('/dev/null'), :AccessLog => []); trap('INT') { s.shutdown }; s.start\" & node build/saucelabs-unit-test.js",
- "js-test-karma": "karma start js/tests/karma.conf.js",
- "js-test-karma-old": "cross-env USE_OLD_JQUERY=true npm run js-test-karma",
- "maintenance-dependencies": "ncu -a -x jquery && npm update && bundle update && shx echo \"Manually update assets/js/vendor/*, js/tests/vendor/* and .travis.yml\"",
- "postdocs-compile": "npm run docs-workbox-precache",
- "release-sri": "node build/generate-sri.js",
- "release-version": "node build/change-version.js",
- "release-zip": "cd dist/ && zip -r9 bootstrap-$npm_package_version-dist.zip * && shx mv bootstrap-$npm_package_version-dist.zip ..",
- "test": "npm-run-all dist js-test docs-compile docs-lint bundlesize",
- "watch": "npm-run-all --parallel watch-css watch-js",
- "watch-css": "nodemon --ignore js/ --ignore dist/ -e scss -x \"npm run css\"",
- "watch-js": "nodemon --ignore scss/ --ignore js/dist/ --ignore dist/ -e js -x \"npm run js-compile\""
- },
- "style": "dist/css/bootstrap.css",
- "version": "4.0.0"
-}
diff --git a/site/plugins/admin/node_modules/jquery/AUTHORS.txt b/site/plugins/admin/node_modules/jquery/AUTHORS.txt
deleted file mode 100644
index 4bb5da15..00000000
--- a/site/plugins/admin/node_modules/jquery/AUTHORS.txt
+++ /dev/null
@@ -1,313 +0,0 @@
-Authors ordered by first contribution.
-
-John Resig
-Gilles van den Hoven
-Michael Geary
-Stefan Petre
-Yehuda Katz
-Corey Jewett
-Klaus Hartl
-Franck Marcia
-Jörn Zaefferer
-Paul Bakaus
-Brandon Aaron
-Mike Alsup
-Dave Methvin
-Ed Engelhardt
-Sean Catchpole
-Paul Mclanahan
-David Serduke
-Richard D. Worth
-Scott González
-Ariel Flesler
-Jon Evans
-TJ Holowaychuk
-Michael Bensoussan
-Robert Katić
-Louis-Rémi Babé
-Earle Castledine
-Damian Janowski
-Rich Dougherty
-Kim Dalsgaard
-Andrea Giammarchi
-Mark Gibson
-Karl Swedberg
-Justin Meyer
-Ben Alman
-James Padolsey
-David Petersen
-Batiste Bieler
-Alexander Farkas
-Rick Waldron
-Filipe Fortes
-Neeraj Singh
-Paul Irish
-Iraê Carvalho
-Matt Curry
-Michael Monteleone
-Noah Sloan
-Tom Viner
-Douglas Neiner
-Adam J. Sontag
-Dave Reed
-Ralph Whitbeck
-Carl Fürstenberg
-Jacob Wright
-J. Ryan Stinnett
-unknown
-temp01
-Heungsub Lee
-Colin Snover
-Ryan W Tenney
-Pinhook
-Ron Otten
-Jephte Clain
-Anton Matzneller
-Alex Sexton
-Dan Heberden
-Henri Wiechers
-Russell Holbrook
-Julian Aubourg
-Gianni Alessandro Chiappetta
-Scott Jehl
-James Burke
-Jonas Pfenniger
-Xavi Ramirez
-Jared Grippe
-Sylvester Keil
-Brandon Sterne
-Mathias Bynens
-Timmy Willison <4timmywil@gmail.com>
-Corey Frang
-Digitalxero
-Anton Kovalyov
-David Murdoch
-Josh Varner
-Charles McNulty
-Jordan Boesch
-Jess Thrysoee
-Michael Murray
-Lee Carpenter
-Alexis Abril
-Rob Morgan
-John Firebaugh
-Sam Bisbee
-Gilmore Davidson
-Brian Brennan
-Xavier Montillet
-Daniel Pihlstrom
-Sahab Yazdani
-avaly
-Scott Hughes
-Mike Sherov
-Greg Hazel
-Schalk Neethling
-Denis Knauf
-Timo Tijhof
-Steen Nielsen
-Anton Ryzhov
-Shi Chuan
-Berker Peksag
-Toby Brain
-Matt Mueller
-Justin
-Daniel Herman
-Oleg Gaidarenko
-Richard Gibson
-Rafaël Blais Masson
-cmc3cn <59194618@qq.com>
-Joe Presbrey
-Sindre Sorhus
-Arne de Bree
-Vladislav Zarakovsky
-Andrew E Monat
-Oskari
-Joao Henrique de Andrade Bruni
-tsinha
-Matt Farmer
-Trey Hunner
-Jason Moon
-Jeffery To
-Kris Borchers
-Vladimir Zhuravlev
-Jacob Thornton
-Chad Killingsworth
-Nowres Rafid
-David Benjamin
-Uri Gilad
-Chris Faulkner
-Elijah Manor
-Daniel Chatfield
-Nikita Govorov
-Wesley Walser
-Mike Pennisi
-Markus Staab
-Dave Riddle
-Callum Macrae
-Benjamin Truyman
-James Huston
-Erick Ruiz de Chávez
-David Bonner
-Akintayo Akinwunmi
-MORGAN
-Ismail Khair
-Carl Danley
-Mike Petrovich
-Greg Lavallee
-Daniel Gálvez
-Sai Lung Wong
-Tom H Fuertes
-Roland Eckl
-Jay Merrifield
-Allen J Schmidt Jr
-Jonathan Sampson
-Marcel Greter
-Matthias Jäggli
-David Fox
-Yiming He
-Devin Cooper
-Paul Ramos
-Rod Vagg
-Bennett Sorbo
-Sebastian Burkhard
-Zachary Adam Kaplan
-nanto_vi
-nanto
-Danil Somsikov
-Ryunosuke SATO
-Jean Boussier
-Adam Coulombe
-Andrew Plummer
-Mark Raddatz
-Isaac Z. Schlueter
-Karl Sieburg
-Pascal Borreli
-Nguyen Phuc Lam
-Dmitry Gusev
-Michał Gołębiowski-Owczarek
-Li Xudong
-Steven Benner
-Tom H Fuertes
-Renato Oliveira dos Santos
-ros3cin
-Jason Bedard
-Kyle Robinson Young
-Chris Talkington
-Eddie Monge
-Terry Jones
-Jason Merino
-Jeremy Dunck
-Chris Price
-Guy Bedford
-Amey Sakhadeo
-Mike Sidorov
-Anthony Ryan
-Dominik D. Geyer
-George Kats
-Lihan Li
-Ronny Springer
-Chris Antaki
-Marian Sollmann
-njhamann
-Ilya Kantor
-David Hong
-John Paul
-Jakob Stoeck
-Christopher Jones
-Forbes Lindesay
-S. Andrew Sheppard
-Leonardo Balter
-Roman Reiß
-Benjy Cui
-Rodrigo Rosenfeld Rosas
-John Hoven
-Philip Jägenstedt
-Christian Kosmowski
-Liang Peng
-TJ VanToll
-Senya Pugach
-Aurelio De Rosa
-Nazar Mokrynskyi
-Amit Merchant
-Jason Bedard
-Arthur Verschaeve
-Dan Hart
-Bin Xin
-David Corbacho
-Veaceslav Grimalschi
-Daniel Husar
-Frederic Hemberger
-Ben Toews
-Aditya Raghavan
-Victor Homyakov
-Shivaji Varma
-Nicolas HENRY
-Anne-Gaelle Colom
-George Mauer
-Leonardo Braga
-Stephen Edgar
-Thomas Tortorini
-Winston Howes
-Jon Hester
-Alexander O'Mara
-Bastian Buchholz
-Arthur Stolyar