silverstripe-webpack/package.json

236 lines
7.0 KiB
JSON
Raw Normal View History

2018-02-05 12:11:01 +01:00
{
2021-05-03 19:11:13 +02:00
"name": "ss-webpack-boilerplate",
2022-04-12 14:33:53 +02:00
"version": "5.0.0",
2021-05-03 19:11:13 +02:00
"description": "Lets you create SilverStripe faster",
"author": "Tony Air <tony@twma.pro>",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/a2nt/silverstripe-webpack"
},
"engines": {
"yarn": ">= 1.0.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-19 00:10:45 +02:00
"prebuild": "yarn lint:fix && yarn lint:check && rimraf ./app/client/dist",
"build": "cross-env NODE_ENV=production webpack --progress --stats-all",
2021-12-17 04:02:04 +01:00
"lint:fix": "eslint './app/client/src/**/*.js' -c eslint.config.json --fix",
2021-08-19 00:10:45 +02:00
"lint:js": "eslint './app/client/src/**/*.js' -c eslint.config.json",
"lint:scss": "sass-lint ./app/client/src/**/*.scss -c sass-lint.yml -v",
"lint:check": "yarn lint:js && yarn lint:scss",
2021-05-03 19:11:13 +02:00
"prunecaches": "rimraf ./node_modules/.cache/",
"postinstall": "npm run prunecaches",
"postuninstall": "npm run prunecaches",
"preinstall": "npx only-allow pnpm"
},
2022-01-15 13:49:49 +01:00
"resolutions": {
"colors": "1.4.0"
},
2021-05-03 19:11:13 +02:00
"browserslist": [
"defaults",
"ie>=11"
],
"dependencies": {
2023-10-31 20:41:48 +01:00
"@a2nt/meta-lightbox-js": "^4.2.8",
2024-03-29 20:11:38 +01:00
"@a2nt/mithril-ui": "^1.1.5",
"@a2nt/ss-bootstrap-ui-webpack-boilerplate-react": "^5.3.5",
2024-04-22 17:00:46 +02:00
"@angular/common": "^17.3.5",
"@angular/core": "^17.3.5",
"@apollo/client": "^3.9.11",
2023-09-13 18:20:30 +02:00
"@glidejs/glide": "^3.6.0",
2023-08-04 00:28:22 +02:00
"@popperjs/core": "^2.11.8",
"@turf/clone": "^6.5.0",
"@turf/clusters-dbscan": "^6.5.0",
"@turf/clusters-kmeans": "^6.5.0",
"@turf/distance": "^6.5.0",
"@turf/helpers": "^6.5.0",
"@turf/invariant": "^6.5.0",
"@turf/meta": "^6.5.0",
2021-05-03 19:11:13 +02:00
"aos": "^2.3.4",
2024-03-29 20:11:38 +01:00
"apollo3-cache-persist": "^0.15.0",
2023-10-31 20:41:48 +01:00
"balanced-match": "^3.0.1",
2023-05-13 04:11:05 +02:00
"bootbox": "^6.0.0",
2024-03-29 20:11:38 +01:00
"bootstrap": "^5.3.3",
"brace-expansion": "^4.0.0",
2021-09-12 22:50:08 +02:00
"charming": "^3.0.2",
"density-clustering": "^1.3.0",
2024-03-29 20:11:38 +01:00
"eslint-scope": "^8.0.1",
"fast-deep-equal": "^3.1.3",
2021-05-03 19:11:13 +02:00
"font-awesome": "^4.7.0",
2023-10-23 18:57:41 +02:00
"graphql": "^16.8.1",
2021-05-03 19:11:13 +02:00
"hammerjs": "^2.0.8",
2023-05-13 04:11:05 +02:00
"inputmask": "^5.0.8",
"kdbush": "^4.0.2",
2022-09-12 23:25:43 +02:00
"keyboardjs": "^2.7.0",
2021-08-19 00:10:45 +02:00
"localforage": "^1.10.0",
2021-05-03 19:11:13 +02:00
"localforage-cordovasqlitedriver": "^1.8.0",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
2024-04-22 17:00:46 +02:00
"mapbox-gl": "^3.3.0",
2021-05-03 19:11:13 +02:00
"material-design-color": "^2.3.2",
2024-03-29 20:11:38 +01:00
"minimatch": "^9.0.4",
2023-10-23 18:57:41 +02:00
"mithril": "^2.2.2",
2024-03-29 20:11:38 +01:00
"moment": "^2.30.1",
2022-09-12 23:25:43 +02:00
"react": "^18.2.0",
"react-dom": "^18.2.0",
2023-05-13 04:11:05 +02:00
"react-easy-swipe": "^0.0.23",
2021-08-02 22:17:27 +02:00
"react-tiny-oembed": "^1.1.0",
2022-09-12 23:25:43 +02:00
"redaxios": "^0.5.1",
2023-05-13 04:11:05 +02:00
"rxjs": "^7.8.1",
2021-05-03 19:11:13 +02:00
"select2": "^4.0.13",
2021-08-14 07:44:37 +02:00
"setimmediate": "^1.0.5",
"skmeans": "^0.11.3",
2023-05-13 04:11:05 +02:00
"supercluster": "^8.0.1",
2021-09-12 22:50:08 +02:00
"vanilla-calendar": "^1.0.30",
2023-09-16 18:28:26 +02:00
"vanillajs-datepicker": "^1.3.4",
2021-08-14 07:44:37 +02:00
"youtube-embed": "^1.0.0"
2021-05-03 19:11:13 +02:00
},
"devDependencies": {
"@a2nt/image-sprite-webpack-plugin": "^0.2.5",
2024-04-22 17:00:46 +02:00
"@babel/core": "^7.24.4",
2024-03-29 20:11:38 +01:00
"@babel/eslint-parser": "^7.24.1",
2022-09-12 23:25:43 +02:00
"@babel/plugin-proposal-class-properties": "^7.18.6",
2023-05-13 04:11:05 +02:00
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
2024-03-29 20:11:38 +01:00
"@babel/plugin-syntax-jsx": "^7.24.1",
2021-06-19 22:22:44 +02:00
"@babel/plugin-syntax-top-level-await": "^7.14.5",
2023-11-20 18:31:44 +01:00
"@babel/plugin-transform-react-jsx": "^7.23.4",
2024-03-29 20:11:38 +01:00
"@babel/plugin-transform-runtime": "^7.24.3",
2024-04-22 17:00:46 +02:00
"@babel/plugin-transform-typescript": "^7.24.4",
"@babel/preset-env": "^7.24.4",
2024-03-29 20:11:38 +01:00
"@babel/preset-react": "^7.24.1",
2024-04-22 17:00:46 +02:00
"@babel/runtime": "^7.24.4",
2024-03-29 20:11:38 +01:00
"@googlemaps/markerclusterer": "^2.5.3",
2021-05-03 19:11:13 +02:00
"@sucrase/webpack-loader": "^2.0.0",
"@ungap/global-this": "^0.4.4",
2023-10-25 00:23:16 +02:00
"@wry/context": "^0.7.4",
"@wry/equality": "^0.5.7",
2023-10-31 20:41:48 +01:00
"@wry/trie": "^0.5.0",
2021-05-03 19:11:13 +02:00
"animate.css": "^4.1.1",
2022-03-15 19:48:57 +01:00
"ansi-html": "^0.0.9",
2021-09-08 22:45:47 +02:00
"ansi-html-community": "^0.0.8",
2021-09-12 22:50:08 +02:00
"ansi-regex": "^6.0.1",
2024-03-29 20:11:38 +01:00
"autoprefixer": "^10.4.19",
2023-08-04 00:28:22 +02:00
"babel-loader": "^9.1.3",
2024-03-29 20:11:38 +01:00
"classnames": "^2.5.1",
"copy-webpack-plugin": "^12.0.2",
2021-05-03 19:11:13 +02:00
"croppie": "^2.6.5",
"cross-env": "^7.0.3",
2024-04-22 17:00:46 +02:00
"css-loader": "^7.1.1",
2024-03-29 20:11:38 +01:00
"css-minimizer-webpack-plugin": "^6.0.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
2021-05-03 19:11:13 +02:00
"eslint-plugin-jquery": "^1.5.1",
2024-03-29 20:11:38 +01:00
"eslint-plugin-react": "^7.34.1",
2021-05-03 19:11:13 +02:00
"events": "^3.3.0",
"exif-js": "^2.3.0",
2024-03-29 20:11:38 +01:00
"exports-loader": "^5.0.0",
2023-05-13 04:11:05 +02:00
"fast-equals": "^5.0.1",
2021-05-03 19:11:13 +02:00
"fast-json-stable-stringify": "^2.1.0",
"fast-levenshtein": "^3.0.0",
2022-09-12 23:25:43 +02:00
"fastest-levenshtein": "^1.0.16",
2024-03-29 20:11:38 +01:00
"favicons": "^7.2.0",
2023-09-16 18:28:26 +02:00
"favicons-webpack-plugin": "^6.0.1",
2021-05-03 19:11:13 +02:00
"file-loader": "^6.2.0",
2021-11-16 13:18:41 +01:00
"graphql-tag": "^2.12.6",
2021-05-03 19:11:13 +02:00
"hoist-non-react-statics": "^3.3.2",
2024-03-29 20:11:38 +01:00
"html-dom-parser": "^5.0.8",
"html-entities": "^2.5.2",
"html-loader": "^5.0.0",
"html-react-parser": "^5.1.10",
"html-webpack-plugin": "^5.6.0",
2021-05-03 19:11:13 +02:00
"img-optimize-loader": "^1.0.7",
2021-08-19 00:10:45 +02:00
"js-yaml": "^4.1.0",
2024-03-29 20:11:38 +01:00
"loglevel": "^1.9.1",
2024-04-22 17:00:46 +02:00
"mini-css-extract-plugin": "^2.9.0",
"msw": "^2.2.14",
2023-08-04 00:28:22 +02:00
"node-fetch": "^3.3.2",
2021-05-03 19:11:13 +02:00
"object-assign": "^4.1.1",
2023-08-04 00:28:22 +02:00
"optimism": "^0.17.5",
2021-06-29 18:05:53 +02:00
"optimize-css-assets-webpack-plugin": "^6.0.1",
2024-03-29 20:11:38 +01:00
"postcss-loader": "^8.1.1",
"prop-types": "^15.8.1",
2023-10-31 20:41:48 +01:00
"punycode": "^2.3.1",
2021-08-03 03:22:09 +02:00
"querystring": "^0.2.1",
2021-05-03 19:11:13 +02:00
"raw-loader": "^4.0.2",
2023-05-13 04:11:05 +02:00
"react-hot-loader": "^4.13.1",
2022-09-12 23:25:43 +02:00
"react-is": "^18.2.0",
2021-05-03 19:11:13 +02:00
"react-lifecycles-compat": "^3.0.4",
2024-03-29 20:11:38 +01:00
"regenerator-runtime": "^0.14.1",
"resolve-url-loader": "^5.0.0",
2023-10-23 18:57:41 +02:00
"rimraf": "^5.0.5",
2021-05-03 19:11:13 +02:00
"routie": "0.0.1",
2024-04-22 17:00:46 +02:00
"sass": "^1.75.0",
2021-05-03 19:11:13 +02:00
"sass-lint": "^1.13.1",
2021-08-19 00:10:45 +02:00
"sass-lint-auto-fix": "^0.21.2",
2021-05-03 19:11:13 +02:00
"sass-lint-fix": "^1.12.1",
2024-04-22 17:00:46 +02:00
"sass-loader": "^14.2.1",
2022-09-12 23:25:43 +02:00
"scheduler": "^0.23.0",
2021-05-03 19:11:13 +02:00
"shallowequal": "^1.1.0",
2023-08-04 00:28:22 +02:00
"strip-ansi": "^7.1.0",
2024-04-22 17:00:46 +02:00
"style-loader": "^4.0.0",
2024-03-29 20:11:38 +01:00
"sucrase": "^3.35.0",
2022-09-12 23:25:43 +02:00
"svg-url-loader": "^8.0.0",
2021-05-03 19:11:13 +02:00
"symbol-observable": "^4.0.0",
2024-03-29 20:11:38 +01:00
"terser-webpack-plugin": "^5.3.10",
2022-05-27 18:08:09 +02:00
"ts-invariant": "^0.10.3",
2023-09-16 18:28:26 +02:00
"tslib": "^2.6.2",
"url": "^0.11.3",
2021-05-03 19:11:13 +02:00
"url-loader": "^4.1.1",
2024-03-29 20:11:38 +01:00
"webpack": "^5.91.0",
2022-05-27 18:08:09 +02:00
"webpack-build-notifications": "^0.3.2",
2024-04-22 17:00:46 +02:00
"webpack-bundle-analyzer": "^4.10.2",
2023-08-04 00:28:22 +02:00
"webpack-cli": "^5.1.4",
2024-03-29 20:11:38 +01:00
"webpack-dev-server": "^5.0.4",
2022-03-15 19:48:57 +01:00
"webpack-manifest-plugin": "^5.0.0",
2023-10-23 18:57:41 +02:00
"webpack-merge": "^5.10.0",
2024-03-29 20:11:38 +01:00
"yarn": "^1.22.22",
2023-05-13 04:11:05 +02:00
"zen-observable": "^0.10.0"
2021-05-03 19:11:13 +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"
]
}
}
2018-02-21 14:18:55 +01:00
}