webpack-bootstrap-ui-kit/package.json

220 lines
6.0 KiB
JSON
Raw Normal View History

2019-06-08 17:20:51 +02:00
{
2021-01-31 11:31:35 +01:00
"name": "@a2nt/ss-bootstrap-ui-webpack-boilerplate-react",
2021-03-17 19:05:39 +01:00
"version": "3.1.5",
2021-02-08 01:30:14 +01: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",
2020-05-14 18:08:28 +02:00
"repository": {
"type": "git",
2021-01-25 12:13:26 +01:00
"url": "git+https://github.com/a2nt/webpack-bootstrap-ui-kit.git"
2020-05-14 18:08:28 +02:00
},
"private": false,
2020-05-14 18:08:28 +02:00
"engines": {
"node": ">= 12",
"yarn": ">= 1.22.0"
2020-05-14 18:08:28 +02:00
},
2020-05-14 18:00:45 +02:00
"scripts": {
2021-02-12 18:57:33 +01:00
"start": "cross-env NODE_ENV=development webpack-dev-server --config webpack.config.serve.js",
2021-01-20 16:31:34 +01:00
"dash": "cross-env NODE_ENV=development webpack-dashboard -- webpack-dev-server --config webpack.config.serve.js",
2020-12-24 23:42:33 +01:00
"build": "cross-env NODE_ENV=production webpack --progress --stats-all",
2021-01-31 12:57:22 +01:00
"lint:check": "eslint ./src --config eslint.config.json && sass-lint ./src --config sass-lint.yml -v -q",
"lint:fix": "eslint ./src --config eslint.config.json --fix && sass-lint ./src --config sass-lint.yml -v -q --fix",
"lint:js": "eslint ./src --config eslint.config.json",
"lint:sass": "sass-lint ./src --config sass-lint.yml -v -q",
"prebuild": "yarn lint:fix && rimraf dist",
"prepare": "yarn lint:fix && yarn build",
2020-05-14 18:00:45 +02:00
"prunecaches": "rimraf ./node_modules/.cache/",
"postinstall": "npm run prunecaches",
"postuninstall": "npm run prunecaches",
2021-02-12 18:57:33 +01:00
"preinstall": "npx only-allow pnpm",
"update": "npx msw init ./src/_graphql"
2020-05-14 18:00:45 +02:00
},
2021-01-31 11:31:35 +01:00
"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",
2020-05-14 18:00:45 +02:00
"browserslist": [
"defaults",
"ie>=11"
],
"dependencies": {
2021-02-26 03:47:36 +01:00
"@a2nt/meta-lightbox-react": "^3.1.0",
2021-03-21 20:57:49 +01:00
"@angular/common": "^11.2.6",
"@angular/core": "^11.2.6",
"@apollo/client": "^3.3.12",
2021-02-24 12:32:19 +01:00
"@jsanahuja/instagramfeed": "github:jsanahuja/instagramfeed",
2021-03-21 20:57:49 +01:00
"@popperjs/core": "^2.9.1",
2020-12-24 23:42:33 +01:00
"aos": "^2.3.4",
2021-02-12 18:57:33 +01:00
"apollo3-cache-persist": "^0.9.1",
2021-01-31 11:31:35 +01:00
"axios": "^0.21.1",
"balanced-match": "^1.0.0",
2020-12-03 10:57:14 +01:00
"bootbox": "^5.5.2",
2021-02-08 01:30:14 +01:00
"bootstrap": "next",
2021-02-26 03:47:36 +01:00
"brace-expansion": "^2.0.1",
2020-05-14 18:00:45 +02:00
"font-awesome": "^4.7.0",
2021-02-12 18:57:33 +01:00
"graphql": "^15.5.0",
2020-05-14 18:00:45 +02:00
"hammerjs": "^2.0.8",
2020-09-02 00:55:50 +02:00
"inputmask": "^5.0.5",
2021-02-12 18:57:33 +01:00
"localforage": "^1.9.0",
"localforage-cordovasqlitedriver": "^1.8.0",
2020-12-24 23:42:33 +01:00
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
2021-02-12 18:57:33 +01:00
"mapbox-gl": "^2.1.1",
2020-05-14 18:00:45 +02:00
"material-design-color": "^2.3.2",
2021-01-31 11:31:35 +01:00
"minimatch": "^3.0.4",
2020-12-24 23:42:33 +01:00
"moment": "^2.29.1",
2021-01-31 10:57:40 +01:00
"react": "^17.0.1",
"react-dom": "^17.0.1",
2021-01-31 11:31:35 +01:00
"react-tiny-oembed": "^1.0.1",
"rxjs": "^6.6.6",
2020-05-14 19:35:16 +02:00
"select2": "^4.0.13",
2021-02-21 09:17:41 +01:00
"setimmediate": "^1.0.5"
2020-05-14 18:00:45 +02:00
},
"devDependencies": {
"@a2nt/image-sprite-webpack-plugin": "^0.2.5",
2021-03-21 20:57:49 +01:00
"@babel/core": "^7.13.10",
"@babel/eslint-parser": "^7.13.10",
2021-02-26 03:47:36 +01:00
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
2021-02-08 01:30:14 +01:00
"@babel/plugin-syntax-jsx": "^7.12.13",
2021-02-12 18:57:33 +01:00
"@babel/plugin-syntax-top-level-await": "^7.12.13",
2021-02-21 09:17:41 +01:00
"@babel/plugin-transform-react-jsx": "^7.12.17",
2021-03-21 20:57:49 +01:00
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.10",
2021-02-08 01:30:14 +01:00
"@babel/preset-react": "^7.12.13",
2021-03-21 20:57:49 +01:00
"@babel/runtime": "^7.13.10",
2020-12-03 10:57:14 +01:00
"@googlemaps/markerclustererplus": "*",
2021-02-12 18:57:33 +01:00
"@ungap/global-this": "^0.4.4",
"@wry/context": "^0.5.4",
2021-03-21 20:57:49 +01:00
"@wry/equality": "^0.3.4",
2021-02-12 18:57:33 +01:00
"@wry/trie": "^0.2.2",
2020-09-09 17:40:58 +02:00
"animate.css": "^4.1.1",
2020-05-24 08:58:18 +02:00
"ansi-html": "^0.0.7",
"ansi-regex": "^5.0.0",
2021-03-21 20:57:49 +01:00
"autoprefixer": "^10.2.5",
2020-12-03 10:57:14 +01:00
"babel-loader": "^8.2.2",
2021-01-31 12:57:22 +01:00
"classnames": "^2.2.6",
2020-12-24 23:42:33 +01:00
"copy-webpack-plugin": "^7.0.0",
2020-06-18 01:22:38 +02:00
"croppie": "^2.6.5",
2020-12-03 10:57:14 +01:00
"cross-env": "^7.0.3",
2021-03-21 20:57:49 +01:00
"css-loader": "^5.1.3",
"eslint": "^7.22.0",
2020-10-12 16:44:29 +02:00
"eslint-plugin-import": "^2.22.1",
2020-05-14 18:00:45 +02:00
"eslint-plugin-jquery": "^1.5.1",
2021-01-04 13:54:06 +01:00
"eslint-plugin-react": "^7.22.0",
"events": "^3.3.0",
2020-12-24 23:42:33 +01:00
"exif-js": "^2.3.0",
2021-01-31 10:33:45 +01:00
"exports-loader": "^2.0.0",
2021-02-12 18:57:33 +01:00
"fast-json-stable-stringify": "^2.1.0",
2020-12-24 23:42:33 +01:00
"fast-levenshtein": "^3.0.0",
"fastest-levenshtein": "^1.0.12",
2021-02-21 19:01:25 +01:00
"favicons": "^6.2.1",
"favicons-webpack-plugin": "5.0.1",
2020-11-05 08:57:23 +01:00
"file-loader": "^6.2.0",
2021-02-12 18:57:33 +01:00
"graphql-tag": "^2.11.0",
2020-12-24 23:42:33 +01:00
"hoist-non-react-statics": "^3.3.2",
"html-dom-parser": "^1.0.0",
2020-12-24 23:42:33 +01:00
"html-entities": "^1.4.0",
2020-10-12 16:44:29 +02:00
"html-loader": "^1.3.2",
2021-02-08 01:30:14 +01:00
"html-react-parser": "^1.2.4",
2021-03-21 20:57:49 +01:00
"html-webpack-plugin": "^5.3.1",
2020-12-24 23:42:33 +01:00
"img-optimize-loader": "^1.0.7",
2020-12-03 10:57:14 +01:00
"loglevel": "^1.7.1",
"mini-css-extract-plugin": "^1.3.9",
2021-02-12 18:57:33 +01:00
"msw": "^0.26.2",
"node-fetch": "^2.6.1",
2020-12-24 23:42:33 +01:00
"node-sass": "^5.0.0",
"object-assign": "^4.1.1",
2021-03-21 20:57:49 +01:00
"optimism": "^0.14.1",
2020-09-02 00:55:50 +02:00
"optimize-css-assets-webpack-plugin": "^5.0.4",
2021-03-21 20:57:49 +01:00
"postcss-loader": "^5.2.0",
2020-12-24 23:42:33 +01:00
"prop-types": "^15.7.2",
2021-01-31 10:33:45 +01:00
"punycode": "^2.1.1",
2021-02-21 09:17:41 +01:00
"querystring": "^0.2.1",
2021-02-12 18:57:33 +01:00
"raw-loader": "^4.0.2",
2020-12-24 23:42:33 +01:00
"react-hot-loader": "^4.13.0",
"react-is": "^17.0.1",
"react-lifecycles-compat": "^3.0.4",
2021-02-12 18:57:33 +01:00
"regenerator-runtime": "^0.13.7",
2020-11-05 08:57:23 +01:00
"resolve-url-loader": "^3.1.2",
2020-09-09 17:40:58 +02:00
"rimraf": "^3.0.2",
2020-05-14 18:00:45 +02:00
"routie": "0.0.1",
"sass-lint": "^1.13.1",
"sass-lint-fix": "^1.12.1",
2021-02-12 18:57:33 +01:00
"sass-loader": "^11.0.1",
2020-12-24 23:42:33 +01:00
"scheduler": "^0.20.1",
"shallowequal": "^1.1.0",
2020-05-24 08:58:18 +02:00
"strip-ansi": "^6.0.0",
2020-12-03 10:57:14 +01:00
"style-loader": "^2.0.0",
"svg-url-loader": "^7.1.1",
2021-02-12 18:57:33 +01:00
"symbol-observable": "^3.0.0",
2021-01-20 16:31:34 +01:00
"terser-webpack-plugin": "^5.1.1",
2021-03-21 20:57:49 +01:00
"ts-invariant": "^0.6.2",
2021-02-12 18:57:33 +01:00
"tslib": "^2.1.0",
2021-01-31 10:33:45 +01:00
"url": "^0.11.0",
2020-10-12 16:44:29 +02:00
"url-loader": "^4.1.1",
2021-03-21 20:57:49 +01:00
"webpack": "^5.27.1",
2021-01-31 10:33:45 +01:00
"webpack-bundle-analyzer": "^4.4.0",
2021-02-08 01:30:14 +01:00
"webpack-cli": "^4.5.0",
2020-12-24 23:42:33 +01:00
"webpack-dev-server": "^4.0.0-beta.0",
2021-03-21 20:57:49 +01:00
"webpack-manifest-plugin": "^3.1.0",
2021-01-31 10:33:45 +01:00
"webpack-merge": "^5.7.3",
2021-02-12 18:57:33 +01:00
"yarn": "^1.22.10",
"zen-observable": "^0.8.15"
2020-05-14 18:00:45 +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"
]
}
}
2019-06-08 17:20:51 +02:00
}