2021-06-29 17:26:17 +02:00
{
"name" : "@a2nt/ss-bootstrap-ui-webpack-boilerplate-react" ,
2021-09-07 22:49:07 +02:00
"version" : "4.2.9" ,
2021-06-29 17:26:17 +02:00
"description" : "This UI Kit allows you to build Bootstrap 5 webapp with some extra UI features. It's easy to extend and easy to convert HTML templates to CMS templates." ,
"author" : "Tony Air <tony@twma.pro>" ,
"license" : "BSD-2-Clause" ,
"repository" : {
"type" : "git" ,
"url" : "git+https://github.com/a2nt/webpack-bootstrap-ui-kit.git"
} ,
"private" : false ,
"engines" : {
"node" : ">= 12" ,
"yarn" : ">= 1.22.0"
} ,
"scripts" : {
"start" : "cross-env NODE_ENV=development webpack-dev-server --config webpack.config.serve.js" ,
"dash" : "cross-env NODE_ENV=development webpack-dashboard -- webpack-dev-server --config webpack.config.serve.js" ,
2021-08-18 20:38:12 +02:00
"build" : "cross-env NODE_ENV=production webpack --progress --stats-all" ,
"lint:fix" : "eslint './src/**/*.js' -c eslint.config.json --fix && sass-lint-auto-fix -s -c ./sass-lint.yml './src/**/*.scss'" ,
"lint:js" : "eslint './src/**/*.js' -c eslint.config.json" ,
"lint:scss" : "sass-lint ./src/**/*.scss -c sass-lint.yml -v" ,
"lint:check" : "yarn lint:js && yarn lint:scss" ,
2021-08-18 22:07:34 +02:00
"prebuild" : "yarn lint:fix && yarn lint:check && rimraf dist" ,
"prepare" : "yarn build" ,
2021-06-29 17:26:17 +02:00
"prunecaches" : "rimraf ./node_modules/.cache/" ,
"postinstall" : "npm run prunecaches" ,
"postuninstall" : "npm run prunecaches" ,
"preinstall" : "npx only-allow pnpm" ,
"update" : "npx msw init ./src/_graphql"
} ,
"directories" : {
"assets" : {
"css" : [
"dist/css/app.css"
] ,
"js" : [
"dist/js/app.js"
]
}
} ,
"main" : "./dist/js/app.js" ,
"browser" : {
"app" : "./dist/js/app.js"
} ,
"module" : "./src/js/app.js" ,
"browserslist" : [
"defaults" ,
"ie>=11"
] ,
"dependencies" : {
2021-09-07 22:49:07 +02:00
"@a2nt/meta-lightbox-js" : "^4.1.2" ,
2021-09-05 21:12:57 +02:00
"@angular/common" : "^12.2.4" ,
"@angular/core" : "^12.2.4" ,
"@apollo/client" : "^3.4.10" ,
2021-06-29 17:26:17 +02:00
"@jsanahuja/instagramfeed" : "github:jsanahuja/instagramfeed" ,
2021-09-05 21:12:57 +02:00
"@popperjs/core" : "^2.10.1" ,
2021-06-29 17:26:17 +02:00
"aos" : "^2.3.4" ,
2021-08-18 22:07:34 +02:00
"apollo3-cache-persist" : "^0.12.1" ,
2021-09-07 22:49:07 +02:00
"axios" : "^0.21.4" ,
2021-06-29 17:26:17 +02:00
"balanced-match" : "^2.0.0" ,
"bootbox" : "^5.5.2" ,
2021-09-07 22:49:07 +02:00
"bootstrap" : "^5.1.1" ,
2021-06-29 17:26:17 +02:00
"brace-expansion" : "^2.0.1" ,
"font-awesome" : "^4.7.0" ,
2021-09-07 22:49:07 +02:00
"graphql" : "^15.5.3" ,
2021-06-29 17:26:17 +02:00
"hammerjs" : "^2.0.8" ,
"inputmask" : "^5.0.6" ,
"keyboardjs" : "^2.6.4" ,
2021-09-05 21:12:57 +02:00
"localforage" : "^1.10.0" ,
2021-06-29 17:26:17 +02:00
"localforage-cordovasqlitedriver" : "^1.8.0" ,
"lodash.debounce" : "^4.0.8" ,
"lodash.throttle" : "^4.1.1" ,
2021-08-17 03:21:03 +02:00
"mapbox-gl" : "^2.4.1" ,
2021-06-29 17:26:17 +02:00
"material-design-color" : "^2.3.2" ,
"minimatch" : "^3.0.4" ,
"moment" : "^2.29.1" ,
"react" : "^17.0.2" ,
"react-dom" : "^17.0.2" ,
2021-08-02 22:03:17 +02:00
"react-easy-swipe" : "^0.0.22" ,
2021-07-20 00:47:49 +02:00
"react-tiny-oembed" : "^1.1.0" ,
2021-08-10 01:27:05 +02:00
"redux" : "^4.1.1" ,
2021-08-02 22:03:17 +02:00
"rxjs" : "^7.3.0" ,
2021-06-29 17:26:17 +02:00
"select2" : "^4.0.13" ,
2021-08-10 01:52:32 +02:00
"setimmediate" : "^1.0.5" ,
"youtube-embed" : "^1.0.0"
2021-06-29 17:26:17 +02:00
} ,
"devDependencies" : {
"@a2nt/image-sprite-webpack-plugin" : "^0.2.5" ,
2021-09-05 21:12:57 +02:00
"@babel/core" : "^7.15.5" ,
"@babel/eslint-parser" : "^7.15.4" ,
2021-06-29 17:26:17 +02:00
"@babel/plugin-proposal-class-properties" : "^7.14.5" ,
"@babel/plugin-proposal-object-rest-spread" : "^7.14.7" ,
"@babel/plugin-syntax-jsx" : "^7.14.5" ,
"@babel/plugin-syntax-top-level-await" : "^7.14.5" ,
2021-08-02 22:03:17 +02:00
"@babel/plugin-transform-react-jsx" : "^7.14.9" ,
2021-08-09 15:10:02 +02:00
"@babel/plugin-transform-runtime" : "^7.15.0" ,
2021-09-05 21:12:57 +02:00
"@babel/preset-env" : "^7.15.4" ,
2021-06-29 17:26:17 +02:00
"@babel/preset-react" : "^7.14.5" ,
2021-09-05 21:12:57 +02:00
"@babel/runtime" : "^7.15.4" ,
2021-06-29 17:26:17 +02:00
"@googlemaps/markerclustererplus" : "*" ,
"@sucrase/webpack-loader" : "^2.0.0" ,
"@ungap/global-this" : "^0.4.4" ,
2021-08-09 15:10:02 +02:00
"@wry/context" : "^0.6.1" ,
"@wry/equality" : "^0.5.2" ,
"@wry/trie" : "^0.3.1" ,
2021-06-29 17:26:17 +02:00
"animate.css" : "^4.1.1" ,
"ansi-html" : "^0.0.7" ,
"ansi-regex" : "^6.0.0" ,
2021-09-05 21:12:57 +02:00
"autoprefixer" : "^10.3.4" ,
2021-06-29 17:26:17 +02:00
"babel-loader" : "^8.2.2" ,
"classnames" : "^2.3.1" ,
"copy-webpack-plugin" : "^9.0.1" ,
"croppie" : "^2.6.5" ,
"cross-env" : "^7.0.3" ,
2021-08-02 22:03:17 +02:00
"css-loader" : "^6.2.0" ,
2021-06-29 17:26:17 +02:00
"css-minimizer-webpack-plugin" : "^3.0.2" ,
2021-07-08 16:38:40 +02:00
"debug" : "^4.3.2" ,
2021-08-02 22:03:17 +02:00
"eslint" : "^7.32.0" ,
2021-09-05 21:12:57 +02:00
"eslint-plugin-import" : "^2.24.2" ,
2021-06-29 17:26:17 +02:00
"eslint-plugin-jquery" : "^1.5.1" ,
2021-09-05 21:12:57 +02:00
"eslint-plugin-react" : "^7.25.1" ,
2021-06-29 17:26:17 +02:00
"events" : "^3.3.0" ,
"exif-js" : "^2.3.0" ,
"exports-loader" : "^3.0.0" ,
"fast-json-stable-stringify" : "^2.1.0" ,
"fast-levenshtein" : "^3.0.0" ,
"fastest-levenshtein" : "^1.0.12" ,
"favicons" : "^6.2.2" ,
"favicons-webpack-plugin" : "5.0.2" ,
"file-loader" : "^6.2.0" ,
"graphql-tag" : "^2.12.5" ,
"hoist-non-react-statics" : "^3.3.2" ,
2021-09-07 22:49:07 +02:00
"html-dom-parser" : "^1.0.2" ,
2021-06-29 17:26:17 +02:00
"html-entities" : "^2.3.2" ,
"html-loader" : "^2.1.2" ,
2021-09-07 22:49:07 +02:00
"html-react-parser" : "^1.3.0" ,
2021-06-29 17:26:17 +02:00
"html-webpack-plugin" : "^5.3.2" ,
"img-optimize-loader" : "^1.0.7" ,
"loglevel" : "^1.7.1" ,
2021-09-05 21:12:57 +02:00
"mini-css-extract-plugin" : "^2.2.2" ,
2021-06-29 17:26:17 +02:00
"ms" : "^2.1.3" ,
2021-09-07 22:49:07 +02:00
"msw" : "^0.35.0" ,
"node-fetch" : "^3.0.0" ,
2021-06-29 17:26:17 +02:00
"object-assign" : "^4.1.1" ,
"optimism" : "^0.16.1" ,
2021-08-02 22:03:17 +02:00
"postcss-loader" : "^6.1.1" ,
2021-06-29 17:26:17 +02:00
"prop-types" : "^15.7.2" ,
"punycode" : "^2.1.1" ,
"querystring" : "^0.2.1" ,
"raw-loader" : "^4.0.2" ,
"react-hot-loader" : "^4.13.0" ,
"react-is" : "^17.0.2" ,
"react-lifecycles-compat" : "^3.0.4" ,
2021-08-02 22:03:17 +02:00
"regenerator-runtime" : "^0.13.9" ,
2021-06-29 17:26:17 +02:00
"resolve-url-loader" : "^4.0.0" ,
"rimraf" : "^3.0.2" ,
"routie" : "0.0.1" ,
2021-08-09 21:15:55 +02:00
"sass" : "*" ,
2021-06-29 17:26:17 +02:00
"sass-lint" : "^1.13.1" ,
2021-08-18 20:38:12 +02:00
"sass-lint-auto-fix" : "^0.21.2" ,
2021-06-29 17:26:17 +02:00
"sass-lint-fix" : "^1.12.1" ,
"sass-loader" : "^12.1.0" ,
"scheduler" : "^0.20.2" ,
"shallowequal" : "^1.1.0" ,
"strip-ansi" : "^7.0.0" ,
2021-08-02 22:03:17 +02:00
"style-loader" : "^3.2.1" ,
2021-08-09 15:10:02 +02:00
"sucrase" : "^3.20.1" ,
2021-06-29 17:26:17 +02:00
"svg-url-loader" : "^7.1.1" ,
"symbol-observable" : "^4.0.0" ,
2021-09-05 21:12:57 +02:00
"terser-webpack-plugin" : "^5.2.3" ,
2021-08-04 01:34:13 +02:00
"ts-invariant" : "^0.9.1" ,
2021-08-17 03:21:03 +02:00
"tslib" : "^2.3.1" ,
2021-06-29 17:26:17 +02:00
"url" : "^0.11.0" ,
"url-loader" : "^4.1.1" ,
2021-09-05 21:12:57 +02:00
"webpack" : "^5.52.0" ,
2021-06-29 17:26:17 +02:00
"webpack-bundle-analyzer" : "^4.4.2" ,
2021-08-17 03:21:03 +02:00
"webpack-cli" : "^4.8.0" ,
2021-09-07 22:49:07 +02:00
"webpack-dev-server" : "^4.1.1" ,
2021-08-02 22:03:17 +02:00
"webpack-manifest-plugin" : "^4.0.2" ,
2021-06-29 17:26:17 +02:00
"webpack-merge" : "^5.8.0" ,
2021-08-02 22:03:17 +02:00
"yarn" : "^1.22.11" ,
"zen-observable" : "^0.8.15" ,
"zen-observable-ts" : "^1.1.0"
2021-06-29 17:26:17 +02:00
} ,
"stylelint" : {
"rules" : {
"block-no-empty" : null ,
"color-no-invalid-hex" : true ,
"comment-empty-line-before" : [
"always" ,
{
"ignore" : [
"stylelint-commands" ,
"after-comment"
]
}
] ,
"declaration-colon-space-after" : "always" ,
"indentation" : [
4 ,
{
"except" : [
"value"
]
}
] ,
"max-empty-lines" : 2 ,
"rule-empty-line-before" : [
"always" ,
{
"except" : [
"first-nested"
] ,
"ignore" : [
"after-comment"
]
}
] ,
"unit-whitelist" : [
"em" ,
"rem" ,
"%" ,
"s" ,
"px"
]
}
2021-08-09 15:10:02 +02:00
} ,
"msw" : {
"workerDirectory" : "src/_graphql"
2021-06-29 17:26:17 +02:00
}
2021-08-09 21:15:55 +02:00
}