2019-06-08 17:20:51 +02:00
{
2019-11-25 07:02:37 +01:00
"name" : "@a2nt/ss-bootstrap-ui-webpack-boilerplate" ,
2020-05-08 17:02:40 +02:00
"version" : "2.0.0" ,
2019-06-08 17:20:51 +02:00
"author" : "Tony Air <tony@twma.pro>" ,
"license" : "MIT" ,
2019-10-20 01:40:40 +02:00
"description" : "This UI Kit allows you to build Bootstrap 4 webapp with some extra UI features. It's easy to extend and easy to convert HTML templates to CMS templates." ,
2019-06-08 17:20:51 +02:00
"private" : false ,
2019-10-20 01:40:40 +02:00
"main" : "src/js/app.js" ,
2019-06-08 17:20:51 +02:00
"repository" : {
"type" : "git" ,
2019-10-20 01:40:40 +02:00
"url" : "git+https://github.com/a2nt/webpack-bootstrap-ui-kit"
2019-06-08 17:20:51 +02:00
} ,
"engines" : {
"yarn" : ">= 1.0.0"
} ,
"scripts" : {
2019-10-20 01:40:40 +02:00
"start" : "cross-env NODE_ENV=development webpack-dev-server --https -d --config webpack.config.js" ,
"dash" : "cross-env NODE_ENV=development webpack-dashboard -- webpack-dev-server --config webpack.config.js" ,
"build" : "cross-env NODE_ENV=production webpack -p --config webpack.config.js --progress" ,
2019-12-10 14:23:32 +01:00
"lint:check" : "eslint ./src --config .eslintrc && sass-lint ./src --config .sasslintrc -v -q" ,
"lint:fix" : "eslint ./src --config .eslintrc --fix && sass-lint ./src --config .sasslintrc -v -q --fix" ,
"lint:js" : "eslint ./src --config .eslintrc" ,
"lint:sass" : "sass-lint ./src --config .sasslintrc -v -q" ,
2019-10-20 01:40:40 +02:00
"prebuild" : "yarn lint:fix && rimraf dist" ,
2020-02-25 07:51:25 +01:00
"prepare" : "yarn lint:fix && yarn build" ,
"prunecaches" : "rimraf ./node_modules/.cache/" ,
"postinstall" : "npm run prunecaches" ,
"postuninstall" : "npm run prunecaches"
2019-06-08 17:20:51 +02:00
} ,
"dependencies" : {
2020-03-28 16:51:50 +01:00
"@a2nt/meta-lightbox" : "^1.2.4" ,
2019-06-08 17:20:51 +02:00
"@google/markerclusterer" : "^1.0.3" ,
2019-10-20 01:40:40 +02:00
"animate.css" : "^3.7.0" ,
2019-06-08 17:20:51 +02:00
"bootbox" : "^4.4.0" ,
2019-12-17 21:40:56 +01:00
"bootstrap" : "^4.4.1" ,
2019-06-08 17:20:51 +02:00
"bootstrap-confirmation2" : "^4.1.0" ,
"bootstrap-datepicker" : "^1.9.0" ,
"bootstrap-offcanvas" : "^1.0.0" ,
2020-02-11 21:16:00 +01:00
"bootstrap-table" : "^1.16.0" ,
2019-06-08 17:20:51 +02:00
"bootstrap-timepicker" : "^0.5.2" ,
2020-03-28 16:51:50 +01:00
"browserslist" : "^4.11.0" ,
"caniuse-lite" : "^1.0.30001036" ,
2019-06-08 17:20:51 +02:00
"core-util-is" : "^1.0.2" ,
"croppie" : "^2.6.4" ,
"exif-js" : "^2.3.0" ,
"font-awesome" : "^4.7.0" ,
"foundation-emails" : "^2.2.1" ,
"gijgo" : "^1.9.13" ,
2020-02-11 21:16:00 +01:00
"inputmask" : "^5.0.3" ,
2019-06-08 17:20:51 +02:00
"jquery" : "^3.4.1" ,
"jquery-hammerjs" : "^2.0.0" ,
2019-10-20 01:40:40 +02:00
"jquery-hoverintent" : "^1.10.1" ,
2019-06-08 17:20:51 +02:00
"jquery-zoom" : "^1.7.21" ,
"jquery.appear" : "^1.0.1" ,
2019-10-20 01:40:40 +02:00
"laravel-mix" : "^4.1.2" ,
2020-03-28 16:51:50 +01:00
"mapbox-gl" : "^1.9.0" ,
2019-06-08 17:20:51 +02:00
"offcanvas-bootstrap" : "^2.5.2" ,
2020-02-11 21:16:00 +01:00
"popper.js" : "^1.16.1" ,
2019-06-08 17:20:51 +02:00
"pouchdb" : "^6.4.3" ,
2019-10-20 01:40:40 +02:00
"quill" : "^1.3.7" ,
2019-06-08 17:20:51 +02:00
"react-bootstrap4-form-validation" : "^1.0.10" ,
"routie" : "0.0.1" ,
2020-02-11 21:16:00 +01:00
"select2" : "^4.0.13" ,
2019-06-08 17:20:51 +02:00
"smooth-scroll" : "^14.2.1" ,
2020-01-29 10:09:39 +01:00
"sticky-sidebar" : "^3.3.1" ,
2020-03-28 16:51:50 +01:00
"yarn" : "^1.22.4"
2019-06-08 17:20:51 +02:00
} ,
"devDependencies" : {
2020-01-23 03:09:36 +01:00
"@a2nt/image-sprite-webpack-plugin" : "^0.2.5" ,
2020-03-28 16:51:50 +01:00
"@babel/core" : "^7.9.0" ,
"@babel/plugin-proposal-object-rest-spread" : "^7.9.0" ,
"@babel/plugin-transform-react-jsx" : "^7.9.1" ,
"@babel/preset-env" : "^7.9.0" ,
2020-02-11 21:16:00 +01:00
"autoprefixer" : "^7.2.5" ,
2019-06-08 17:20:51 +02:00
"babel-eslint" : "^8.2.6" ,
2020-03-28 16:51:50 +01:00
"babel-loader" : "^8.1.0" ,
2019-06-08 17:20:51 +02:00
"browser-sync" : "^2.24.5" ,
"browser-sync-webpack-plugin" : "^2.2.2" ,
"copy-webpack-plugin" : "^4.6.0" ,
"copyfiles" : "^1.2.0" ,
"cross-env" : "^5.1.6" ,
2020-02-11 21:16:00 +01:00
"css-loader" : "^3.4.2" ,
2019-06-08 17:20:51 +02:00
"eslint" : "^4.18.1" ,
2020-02-11 21:16:00 +01:00
"eslint-plugin-import" : "^2.20.1" ,
2019-08-12 11:23:24 +02:00
"eslint-plugin-jquery" : "^1.5.1" ,
2020-03-28 16:51:50 +01:00
"eslint-plugin-react" : "^7.19.0" ,
2019-06-08 17:20:51 +02:00
"exports-loader" : "^0.7.0" ,
"extract-text-webpack-plugin" : "^4.0.0-beta.0" ,
2019-10-20 01:40:40 +02:00
"favicons-webpack-plugin" : "^1.0.2" ,
2019-06-08 17:20:51 +02:00
"file-loader" : "^1.1.5" ,
2020-02-25 07:22:43 +01:00
"hard-source-webpack-plugin" : "^0.13.1" ,
2019-11-25 09:24:25 +01:00
"html-loader" : "^0.5.5" ,
2020-03-28 16:51:50 +01:00
"html-webpack-plugin" : "^4.0.1" ,
2020-01-22 10:49:07 +01:00
"imagemin-gifsicle" : "^7.0.0" ,
"imagemin-jpegtran" : "^6.0.0" ,
"imagemin-optipng" : "^7.1.0" ,
2020-03-28 16:51:50 +01:00
"imagemin-svgo" : "^7.1.0" ,
2020-01-22 10:49:07 +01:00
"imagemin-webpack" : "^5.1.1" ,
2020-02-25 07:22:43 +01:00
"loglevel" : "^1.6.7" ,
2019-06-08 17:20:51 +02:00
"lost" : "^8.3.1" ,
2019-10-20 04:40:30 +02:00
"material-design-color" : "^2.3.2" ,
2020-02-11 21:16:00 +01:00
"node-sass" : "^4.13.1" ,
2019-06-08 17:20:51 +02:00
"object-assign" : "^4.1.1" ,
2019-08-12 11:23:24 +02:00
"optimize-css-assets-webpack-plugin" : "^5.0.3" ,
2019-06-08 17:20:51 +02:00
"postcss-loader" : "^2.1.5" ,
2020-03-28 16:51:50 +01:00
"react" : "^16.13.1" ,
"react-dom" : "^16.13.1" ,
2019-06-08 17:20:51 +02:00
"react-hot-loader" : "^3.1.3" ,
"redux" : "^3.7.2" ,
"redux-devtools-extension" : "^2.13.8" ,
"resolve-url-loader" : "^2.3.2" ,
"rimraf" : "^2.6.3" ,
"sass-lint" : "^1.13.1" ,
"sass-lint-fix" : "^1.12.1" ,
"sass-loader" : "^6.0.6" ,
2019-08-12 11:23:24 +02:00
"script-ext-html-webpack-plugin" : "^2.1.4" ,
2019-06-08 17:20:51 +02:00
"style-loader" : "^0.19.0" ,
2019-08-12 11:23:24 +02:00
"svg-url-loader" : "^2.3.3" ,
2020-03-28 16:51:50 +01:00
"terser-webpack-plugin" : "^2.3.5" ,
2019-06-08 17:20:51 +02:00
"url-loader" : "^0.6.2" ,
2020-03-28 16:51:50 +01:00
"webpack" : "^4.42.0" ,
2020-02-11 21:16:00 +01:00
"webpack-cli" : "^3.3.11" ,
"webpack-dev-server" : "^3.10.3" ,
2019-06-08 17:20:51 +02:00
"webpack-manifest-plugin" : "^1.3.2" ,
"webpack-merge" : "^4.1.1"
} ,
2019-11-25 07:02:37 +01:00
"publishConfig" : {
"registry" : "https://npm.pkg.github.com/"
} ,
"browserslist" : [
2020-02-07 20:49:38 +01:00
"defaults" ,
"ie>=11"
2019-11-25 07:02:37 +01:00
] ,
2019-06-08 17:20:51 +02:00
"stylelint" : {
"rules" : {
"block-no-empty" : null ,
"color-no-invalid-hex" : true ,
"comment-empty-line-before" : [
2019-12-17 21:40:56 +01:00
"always" ,
{
2019-06-08 17:20:51 +02:00
"ignore" : [
"stylelint-commands" ,
"after-comment"
]
}
] ,
"declaration-colon-space-after" : "always" ,
"indentation" : [
2019-12-17 21:40:56 +01:00
4 ,
{
2019-06-08 17:20:51 +02:00
"except" : [
"value"
]
}
] ,
"max-empty-lines" : 2 ,
"rule-empty-line-before" : [
2019-12-17 21:40:56 +01:00
"always" ,
{
2019-06-08 17:20:51 +02:00
"except" : [
"first-nested"
] ,
"ignore" : [
"after-comment"
]
}
] ,
"unit-whitelist" : [
"em" ,
"rem" ,
"%" ,
"s" ,
"px"
]
}
}
}