2018-04-17 21:03:14 +00:00
|
|
|
{
|
2020-02-14 02:23:21 +00:00
|
|
|
"name": "@woocommerce/admin-library",
|
2021-05-14 21:50:15 +00:00
|
|
|
"version": "2.4.0-dev",
|
2020-02-14 02:23:21 +00:00
|
|
|
"homepage": "https://woocommerce.github.io/woocommerce-admin/",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com:woocommerce/woocommerce-admin.git"
|
|
|
|
},
|
|
|
|
"license": "GPL-3.0-or-later",
|
|
|
|
"author": "Automattic",
|
|
|
|
"files": [
|
|
|
|
"dist/**/*.css",
|
|
|
|
"dist/**/*.js",
|
|
|
|
"dist/feature-config-core.php",
|
|
|
|
"includes/class-wc-admin-loader.php",
|
|
|
|
"includes/features/**/*.php",
|
|
|
|
"languages/**/*.json",
|
|
|
|
"license.txt"
|
|
|
|
],
|
|
|
|
"scripts": {
|
2020-08-04 01:13:48 +00:00
|
|
|
"prebuild": "npm run -s install-if-deps-outdated",
|
2020-02-14 02:23:21 +00:00
|
|
|
"build": "npm run build:feature-config && npm run build:packages && cross-env NODE_ENV=production webpack",
|
2020-04-29 18:01:27 +00:00
|
|
|
"analyze": "cross-env NODE_ENV=production ANALYZE=true webpack",
|
2020-02-14 02:23:21 +00:00
|
|
|
"postbuild": "npm run -s i18n:pot && npm run -s i18n:build",
|
|
|
|
"build:feature-config": "php bin/generate-feature-config.php",
|
|
|
|
"build:packages": "node ./bin/packages/build.js",
|
|
|
|
"build:release": "./bin/build-plugin-zip.sh",
|
|
|
|
"clean": "rimraf ./dist ./packages/*/build ./packages/*/build-module ./packages/*/build-style",
|
|
|
|
"predev": "npm run -s install-if-deps-outdated && php ./bin/update-version.php",
|
|
|
|
"dev": "cross-env WC_ADMIN_PHASE=development npm run build:feature-config && cross-env WC_ADMIN_PHASE=development npm run build:packages && cross-env WC_ADMIN_PHASE=development webpack",
|
2021-06-02 04:39:34 +00:00
|
|
|
"docs": "./bin/import-wp-css-storybook.sh && STORYBOOK=true npx build-storybook -c storybook/.storybook -o ./docs/components/storybook",
|
2020-02-14 02:23:21 +00:00
|
|
|
"i18n": "npm run -s i18n:js && npm run -s i18n:check && npm run -s i18n:pot && npm run -s i18n:build",
|
|
|
|
"i18n:build": "php bin/combine-pot-files.php languages/woocommerce-admin.po languages/woocommerce-admin.pot",
|
|
|
|
"i18n:check": "grunt checktextdomain",
|
|
|
|
"i18n:js": "npm run clean && cross-env NODE_ENV=production babel client packages -o /dev/null",
|
|
|
|
"i18n:json": "./bin/make-i18n-json.sh",
|
|
|
|
"i18n:pot": "grunt makepot",
|
|
|
|
"install-if-deps-outdated": "node bin/install-if-deps-outdated.js",
|
|
|
|
"install-if-no-packages": "node bin/install-if-no-packages.js",
|
|
|
|
"jest:update": "jest -u --config=tests/js/jest.config.json",
|
2020-12-30 20:36:29 +00:00
|
|
|
"labels:dry": "github-label-sync --labels ./.github/label-sync-config.json --allow-added-labels --dry-run woocommerce/woocommerce-admin",
|
|
|
|
"labels:sync": "github-label-sync --labels ./.github/label-sync-config.json --allow-added-labels woocommerce/woocommerce-admin",
|
2020-02-14 02:23:21 +00:00
|
|
|
"lint": "npm run lint:js && npm run lint:css",
|
|
|
|
"lint:css": "stylelint '**/*.scss'",
|
2021-01-22 21:38:55 +00:00
|
|
|
"lint:css-fix": "stylelint '**/*.scss' --fix --ip 'storybook/wordpress'",
|
2021-03-01 03:01:22 +00:00
|
|
|
"lint:js": "wp-scripts lint-js ./packages ./client --ext=js,ts,tsx",
|
|
|
|
"lint:js:packages": "wp-scripts lint-js ./packages --ext=js,ts,tsx",
|
|
|
|
"lint:js:client": "wp-scripts lint-js ./client --ext=js,ts,tsx",
|
|
|
|
"lint:js-fix": "npm run lint:js -- --fix --ext=js,ts,tsx",
|
2020-02-14 02:23:21 +00:00
|
|
|
"lint:php": "./vendor/bin/phpcs --standard=phpcs.xml.dist $(git ls-files | grep .php$)",
|
|
|
|
"lint:php-fix": "./vendor/bin/phpcbf --standard=phpcs.xml.dist $(git ls-files | grep .php$)",
|
2021-03-01 03:01:22 +00:00
|
|
|
"ts:check": "tsc --build",
|
2020-07-28 02:32:58 +00:00
|
|
|
"reformat-files": "wp-scripts format-js -- --ignore-path .eslintignore",
|
2020-02-14 02:23:21 +00:00
|
|
|
"prepack": "npm install && npm run lint && npm run test && cross-env WC_ADMIN_PHASE=core npm run build",
|
|
|
|
"publish-packages:check": "npm run build:packages && lerna updated",
|
|
|
|
"publish-packages:dev": "npm run build:packages && lerna publish from-package --npm-tag next",
|
|
|
|
"publish-packages:prod": "npm run build:packages && lerna publish from-package",
|
2020-08-04 01:13:48 +00:00
|
|
|
"prestart": "npm run -s install-if-deps-outdated",
|
2020-02-14 02:23:21 +00:00
|
|
|
"start": "cross-env WC_ADMIN_PHASE=development npm run build:packages && cross-env WC_ADMIN_PHASE=development npm run build:feature-config && concurrently \"cross-env WC_ADMIN_PHASE=development webpack --watch\" \"node ./bin/packages/watch.js\"",
|
|
|
|
"pretest": "npm run -s install-if-no-packages",
|
2020-08-12 23:29:48 +00:00
|
|
|
"test": "./node_modules/jest-24.9.0/bin/jest.js --config tests/js/jest.config.json",
|
2021-04-22 16:59:55 +00:00
|
|
|
"test:debug": "node --inspect-brk ./node_modules/jest-24.9.0/bin/jest.js --config tests/js/jest.config.json --watch --runInBand --no-cache",
|
2021-04-05 00:09:36 +00:00
|
|
|
"test:e2e": "WP_VERSION=latest npm run build && npx wc-e2e docker:down && npx wc-e2e docker:up && npx wc-e2e test:e2e",
|
2020-10-02 04:38:13 +00:00
|
|
|
"test-staged": "./node_modules/jest-24.9.0/bin/jest.js --bail --config tests/js/jest.config.json --findRelatedTests",
|
2020-02-14 02:23:21 +00:00
|
|
|
"test:help": "wp-scripts test-unit-js --help",
|
2021-02-18 01:06:54 +00:00
|
|
|
"test:php": "docker-compose -f docker/wc-admin-php-test-suite/docker-compose.yml run --rm phpunit",
|
|
|
|
"posttest:php": "docker-compose -f docker/wc-admin-php-test-suite/docker-compose.yml down",
|
2020-02-14 02:23:21 +00:00
|
|
|
"test:update-snapshots": "jest --updateSnapshot --config tests/js/jest.config.json",
|
|
|
|
"test:watch": "npm run test -- --watch",
|
2020-10-12 22:00:54 +00:00
|
|
|
"test:zip": "npm run clean && composer i && ./bin/build-test-zip.sh",
|
2020-02-14 02:23:21 +00:00
|
|
|
"example": "webpack --config docs/examples/extensions/examples.config.js --watch",
|
|
|
|
"pre-release": "./bin/pre-release.sh",
|
2020-02-24 02:25:26 +00:00
|
|
|
"create-wc-extension": "node ./bin/starter-pack/starter-pack.js",
|
2021-06-02 03:54:00 +00:00
|
|
|
"storybook": "./bin/import-wp-css-storybook.sh && STORYBOOK=true start-storybook -c ./storybook/.storybook -p 6007 --ci",
|
|
|
|
"build-storybook": "build-storybook -c ./storybook/.storybook",
|
|
|
|
"changelog": "node ./bin/changelog --changelogSrcType='ZENHUB_RELEASE'",
|
2021-03-02 21:13:21 +00:00
|
|
|
"bump-version": "npm run -s install-if-deps-outdated && php ./bin/update-version.php",
|
2021-03-17 00:27:26 +00:00
|
|
|
"wp-env-mysql-port": "node ./docker/wc-admin-wp-env/mysql-port.js",
|
|
|
|
"create-hook-reference": "node ./bin/hook-reference/index.js"
|
2020-03-12 21:21:11 +00:00
|
|
|
},
|
2020-02-14 02:23:21 +00:00
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged",
|
2020-10-02 04:38:13 +00:00
|
|
|
"pre-push": "node bin/pre-push-hook.js"
|
2020-02-14 02:23:21 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-05-25 04:25:10 +00:00
|
|
|
"@automattic/explat-client": "0.0.2",
|
|
|
|
"@automattic/explat-client-react-helpers": "0.0.2",
|
2021-05-28 20:59:49 +00:00
|
|
|
"@woocommerce/e2e-environment": "0.2.2",
|
|
|
|
"@woocommerce/e2e-utils": "0.1.5",
|
2020-02-14 02:23:21 +00:00
|
|
|
"@wordpress/api-fetch": "2.2.8",
|
2021-02-10 21:52:39 +00:00
|
|
|
"@wordpress/base-styles": "3.3.0",
|
|
|
|
"@wordpress/components": "11.1.3",
|
2021-03-11 02:40:23 +00:00
|
|
|
"@wordpress/core-data": "2.25.0",
|
2021-05-25 15:14:31 +00:00
|
|
|
"@wordpress/data": "4.27.3",
|
2021-02-10 21:52:39 +00:00
|
|
|
"@wordpress/data-controls": "1.20.1",
|
|
|
|
"@wordpress/date": "3.13.0",
|
|
|
|
"@wordpress/dom": "2.16.0",
|
|
|
|
"@wordpress/element": "2.19.0",
|
|
|
|
"@wordpress/hooks": "2.11.0",
|
|
|
|
"@wordpress/html-entities": "2.10.0",
|
|
|
|
"@wordpress/i18n": "3.17.0",
|
2021-05-25 15:14:14 +00:00
|
|
|
"@wordpress/icons": "2.10.3",
|
2021-02-10 21:52:39 +00:00
|
|
|
"@wordpress/keycodes": "2.18.0",
|
2020-02-14 02:23:21 +00:00
|
|
|
"@wordpress/notices": "1.12.0",
|
2021-02-10 21:52:39 +00:00
|
|
|
"@wordpress/plugins": "2.24.1",
|
|
|
|
"@wordpress/url": "2.21.0",
|
|
|
|
"@wordpress/viewport": "2.25.1",
|
Refactor <List> to support custom markup (https://github.com/woocommerce/woocommerce-admin/pull/6787)
* Create the new experimental list, default to rendering it when items are not supplied.
* Remove typings from the List, ListItem.
* Add react-transition-group as dependency.
* Fix warnings by wrapping with CSS transition, pass down props from List.
* Remove type annotations left in list-item.
* Duplicate some styles in the higher level woocommerce-list-item element, to make them work in the new list.
* Fix accessibility issues, adjust the role logic
* Add more testing of the roles logic.
* Mark the old list stories as deprecated, add a basic story for the new style.
* Expose ListItem without Experimental in the name.
* Remove some redundant code changes.
* Fix linting issues
* Add types package.
* Cast the type of children to TransitionGroup.
* Adjust the list to assume a purpose of being a list of links.
* Adjust the tests for the new behaviour.
* Fix css mangled by prettier.
* Fix types that are optional.
* Rework the list item.
* Export new list as experimental, fix accessibility styles and deprecation notice.
* Make the basic transition opt-in.
* Update classnames to get types.
* Add tests, adjust behaviour for css disable.
* Fix css lint, remove types/classnames, update tetsing-library/user-event.
* Fix the basic story for ExperimentalList.
* Conditionally add keyDown and role based on onClick handler. Adjust tests to new behaviour.
* tabIndex only on hasAction
* Update the package-lock
* Add changelog
* Fix transition styling
Co-authored-by: Paul Sealock <psealock@gmail.com>
Co-authored-by: Lourens Schep <lourensschep@gmail.com>
2021-04-23 18:47:43 +00:00
|
|
|
"classnames": "2.3.1",
|
2021-03-05 03:19:30 +00:00
|
|
|
"core-js": "3.9.1",
|
2020-11-26 00:17:22 +00:00
|
|
|
"debug": "4.3.1",
|
2021-06-03 02:11:24 +00:00
|
|
|
"dompurify": "2.2.9",
|
2021-01-06 23:56:44 +00:00
|
|
|
"github-label-sync": "2.0.0",
|
2020-02-14 02:23:21 +00:00
|
|
|
"gridicons": "3.3.1",
|
|
|
|
"interpolate-components": "1.1.1",
|
2021-03-11 02:40:23 +00:00
|
|
|
"memize": "1.1.0",
|
2020-02-14 02:23:21 +00:00
|
|
|
"memoize-one": "5.1.1",
|
2021-01-22 21:41:40 +00:00
|
|
|
"qs": "6.9.6",
|
2020-05-12 22:45:17 +00:00
|
|
|
"react-dates": "17.2.0",
|
2021-01-05 00:42:18 +00:00
|
|
|
"react-router-dom": "5.2.0",
|
2021-01-06 23:57:50 +00:00
|
|
|
"react-transition-group": "4.4.1",
|
2020-02-14 02:23:21 +00:00
|
|
|
"react-visibility-sensor": "5.1.1",
|
2021-03-01 03:01:22 +00:00
|
|
|
"redux": "4.0.5",
|
2021-05-24 03:48:00 +00:00
|
|
|
"typescript": "4.2.4"
|
2020-02-14 02:23:21 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-03-23 22:08:17 +00:00
|
|
|
"@automattic/color-studio": "2.5.0",
|
2020-07-08 04:09:54 +00:00
|
|
|
"@automattic/mini-css-extract-plugin-with-rtl": "0.8.0",
|
2021-04-27 20:55:14 +00:00
|
|
|
"@babel/cli": "7.13.16",
|
2021-05-10 01:34:20 +00:00
|
|
|
"@babel/core": "7.14.0",
|
2021-03-11 02:39:37 +00:00
|
|
|
"@babel/plugin-proposal-class-properties": "7.13.0",
|
|
|
|
"@babel/plugin-transform-async-to-generator": "7.13.0",
|
2021-03-24 03:07:28 +00:00
|
|
|
"@babel/plugin-transform-react-jsx": "7.13.12",
|
2021-05-10 01:34:20 +00:00
|
|
|
"@babel/preset-env": "7.14.1",
|
2021-03-30 04:05:58 +00:00
|
|
|
"@babel/preset-typescript": "7.13.0",
|
2021-06-02 03:54:00 +00:00
|
|
|
"@storybook/addon-a11y": "6.2.9",
|
|
|
|
"@storybook/addon-actions": "6.2.9",
|
2021-02-10 02:46:13 +00:00
|
|
|
"@storybook/addon-console": "1.2.3",
|
2021-06-02 03:54:00 +00:00
|
|
|
"@storybook/addon-docs": "6.2.9",
|
|
|
|
"@storybook/addon-knobs": "6.2.9",
|
|
|
|
"@storybook/addon-links": "6.2.9",
|
|
|
|
"@storybook/addon-storysource": "6.2.9",
|
|
|
|
"@storybook/addon-viewport": "6.2.9",
|
|
|
|
"@storybook/addons": "6.2.9",
|
|
|
|
"@storybook/react": "6.2.9",
|
2021-04-28 00:57:23 +00:00
|
|
|
"@testing-library/jest-dom": "5.12.0",
|
2021-05-26 03:07:32 +00:00
|
|
|
"@testing-library/react": "11.2.7",
|
2020-12-09 00:23:16 +00:00
|
|
|
"@testing-library/react-hooks": "3.7.0",
|
2021-05-26 04:06:35 +00:00
|
|
|
"@testing-library/user-event": "13.1.9",
|
2021-04-15 01:32:46 +00:00
|
|
|
"@types/cookie": "0.4.0",
|
2021-05-19 00:46:10 +00:00
|
|
|
"@types/dompurify": "2.2.2",
|
2021-03-30 04:05:58 +00:00
|
|
|
"@types/expect-puppeteer": "4.4.5",
|
|
|
|
"@types/history": "4.7.8",
|
2021-04-28 03:36:32 +00:00
|
|
|
"@types/jest": "26.0.23",
|
2021-06-02 01:09:07 +00:00
|
|
|
"@types/lodash": "4.14.170",
|
2021-03-30 04:05:58 +00:00
|
|
|
"@types/puppeteer": "5.4.3",
|
2021-05-03 19:18:45 +00:00
|
|
|
"@types/react-router-dom": "5.1.7",
|
|
|
|
"@types/react-transition-group": "4.4.1",
|
2021-03-31 00:59:18 +00:00
|
|
|
"@types/wordpress__components": "9.8.6",
|
2021-05-03 19:18:45 +00:00
|
|
|
"@types/wordpress__data-controls": "1.0.4",
|
2021-05-05 02:27:49 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "4.22.1",
|
2021-04-07 05:15:00 +00:00
|
|
|
"@woocommerce/api": "0.1.2",
|
2020-07-30 01:51:15 +00:00
|
|
|
"@woocommerce/components": "file:packages/components",
|
|
|
|
"@woocommerce/csv-export": "file:packages/csv-export",
|
|
|
|
"@woocommerce/currency": "file:packages/currency",
|
2021-01-26 00:24:28 +00:00
|
|
|
"@woocommerce/customer-effort-score": "file:packages/customer-effort-score",
|
2020-07-30 01:51:15 +00:00
|
|
|
"@woocommerce/data": "file:packages/data",
|
|
|
|
"@woocommerce/date": "file:packages/date",
|
2021-03-23 22:10:32 +00:00
|
|
|
"@woocommerce/dependency-extraction-webpack-plugin": "file:packages/dependency-extraction-webpack-plugin",
|
2020-07-28 02:32:58 +00:00
|
|
|
"@woocommerce/eslint-plugin": "file:packages/eslint-plugin",
|
2021-01-07 23:57:09 +00:00
|
|
|
"@woocommerce/experimental": "file:packages/experimental",
|
2021-04-20 17:17:19 +00:00
|
|
|
"@woocommerce/explat": "file:packages/explat",
|
2020-07-30 01:51:15 +00:00
|
|
|
"@woocommerce/navigation": "file:packages/navigation",
|
2020-11-09 07:17:08 +00:00
|
|
|
"@woocommerce/notices": "file:packages/notices",
|
2020-07-30 01:51:15 +00:00
|
|
|
"@woocommerce/number": "file:packages/number",
|
2020-08-20 04:59:52 +00:00
|
|
|
"@woocommerce/tracks": "file:packages/tracks",
|
2021-05-28 23:26:38 +00:00
|
|
|
"@woocommerce/onboarding": "file:packages/onboarding",
|
2020-02-14 02:23:21 +00:00
|
|
|
"@wordpress/babel-plugin-makepot": "2.1.3",
|
2021-02-24 01:24:22 +00:00
|
|
|
"@wordpress/babel-preset-default": "5.0.1",
|
2021-06-03 20:01:16 +00:00
|
|
|
"@wordpress/browserslist-config": "4.0.1",
|
2021-02-10 21:52:39 +00:00
|
|
|
"@wordpress/custom-templated-path-webpack-plugin": "1.7.0",
|
|
|
|
"@wordpress/e2e-test-utils": "4.16.1",
|
2021-01-26 00:24:28 +00:00
|
|
|
"@wordpress/eslint-plugin": "8.0.0",
|
2020-09-04 02:31:09 +00:00
|
|
|
"@wordpress/jest-preset-default": "5.5.0",
|
2021-02-10 21:52:39 +00:00
|
|
|
"@wordpress/postcss-plugins-preset": "1.6.0",
|
2020-02-14 02:23:21 +00:00
|
|
|
"@wordpress/postcss-themes": "1.0.5",
|
2021-02-10 21:52:39 +00:00
|
|
|
"@wordpress/prettier-config": "0.4.0",
|
|
|
|
"@wordpress/scripts": "12.6.1",
|
2021-06-02 02:10:07 +00:00
|
|
|
"autoprefixer": "10.2.6",
|
2021-03-30 04:05:58 +00:00
|
|
|
"await-exec": "0.1.2",
|
2020-11-11 02:34:17 +00:00
|
|
|
"babel-jest": "26.6.3",
|
2020-12-02 01:30:21 +00:00
|
|
|
"babel-loader": "8.2.2",
|
2020-02-14 02:23:21 +00:00
|
|
|
"babel-plugin-transform-class-properties": "6.24.1",
|
|
|
|
"babel-plugin-transform-es2015-template-literals": "6.22.0",
|
2021-04-28 05:41:23 +00:00
|
|
|
"chalk": "4.1.1",
|
2021-05-05 04:11:31 +00:00
|
|
|
"comment-parser": "1.1.5",
|
2020-08-13 00:53:20 +00:00
|
|
|
"concurrently": "5.3.0",
|
2021-03-08 23:57:14 +00:00
|
|
|
"config": "3.3.6",
|
2021-03-18 03:01:51 +00:00
|
|
|
"copy-webpack-plugin": "5.1.2",
|
2020-12-09 01:51:29 +00:00
|
|
|
"cross-env": "7.0.3",
|
2020-06-18 11:46:20 +00:00
|
|
|
"css-loader": "3.6.0",
|
2021-06-09 02:02:27 +00:00
|
|
|
"docsify-cli": "4.4.3",
|
2021-03-30 04:05:58 +00:00
|
|
|
"eslint-import-resolver-typescript": "2.4.0",
|
2021-06-02 02:49:11 +00:00
|
|
|
"eslint-import-resolver-webpack": "0.13.1",
|
2021-03-11 02:40:23 +00:00
|
|
|
"eslint-plugin-import": "2.22.1",
|
2021-06-09 04:57:35 +00:00
|
|
|
"fork-ts-checker-webpack-plugin": "6.2.10",
|
2020-02-14 02:23:21 +00:00
|
|
|
"fs-extra": "8.1.0",
|
2020-08-19 03:54:23 +00:00
|
|
|
"grunt": "1.3.0",
|
2020-02-14 02:23:21 +00:00
|
|
|
"grunt-checktextdomain": "1.0.1",
|
|
|
|
"grunt-wp-i18n": "1.0.3",
|
2021-01-21 03:06:11 +00:00
|
|
|
"husky": "4.3.8",
|
2020-08-13 03:53:47 +00:00
|
|
|
"jest-24.9.0": "npm:jest@24.9.0",
|
2020-06-10 21:38:59 +00:00
|
|
|
"jest-environment-jsdom-sixteen": "1.0.3",
|
2020-06-13 00:58:58 +00:00
|
|
|
"lerna": "3.22.1",
|
2021-02-24 02:07:39 +00:00
|
|
|
"lint-staged": "10.5.4",
|
2020-12-02 03:22:13 +00:00
|
|
|
"md5": "2.3.0",
|
2020-03-12 21:21:11 +00:00
|
|
|
"merge-config": "2.0.0",
|
2020-08-13 03:55:09 +00:00
|
|
|
"moment-timezone-data-webpack-plugin": "1.3.0",
|
2020-12-16 02:57:32 +00:00
|
|
|
"node-watch": "0.7.1",
|
2020-02-14 02:23:21 +00:00
|
|
|
"postcss-color-function": "4.1.0",
|
|
|
|
"postcss-loader": "3.0.0",
|
2021-01-26 00:24:28 +00:00
|
|
|
"prettier": "npm:wp-prettier@2.2.1-beta-1",
|
2020-12-16 03:02:03 +00:00
|
|
|
"promptly": "3.2.0",
|
2020-02-14 02:23:21 +00:00
|
|
|
"prop-types": "15.7.2",
|
2020-12-23 01:22:36 +00:00
|
|
|
"raw-loader": "4.0.2",
|
2020-02-14 02:23:21 +00:00
|
|
|
"readline-sync": "1.4.10",
|
2021-05-12 02:37:12 +00:00
|
|
|
"replace": "1.2.1",
|
2020-03-24 00:51:08 +00:00
|
|
|
"rimraf": "3.0.2",
|
2020-02-14 02:23:21 +00:00
|
|
|
"rtlcss": "2.5.0",
|
2021-06-09 02:02:27 +00:00
|
|
|
"sass": "1.34.0",
|
2021-06-02 03:54:00 +00:00
|
|
|
"sass-loader": "10.1.1",
|
2020-02-14 02:23:21 +00:00
|
|
|
"style-loader": "0.23.1",
|
|
|
|
"stylelint": "9.10.1",
|
|
|
|
"stylelint-config-wordpress": "13.1.0",
|
2021-05-12 03:57:27 +00:00
|
|
|
"terser-webpack-plugin": "2.3.8",
|
2020-02-14 02:23:21 +00:00
|
|
|
"url-loader": "1.1.2",
|
2020-04-27 13:41:16 +00:00
|
|
|
"webpack": "4.43.0",
|
2020-05-12 22:45:17 +00:00
|
|
|
"webpack-bundle-analyzer": "3.6.1",
|
2021-05-19 01:56:09 +00:00
|
|
|
"webpack-cli": "3.3.12",
|
2021-03-10 02:39:02 +00:00
|
|
|
"webpack-fix-style-only-entries": "0.6.1",
|
2021-02-24 01:24:22 +00:00
|
|
|
"webpack-rtl-plugin": "2.0.0"
|
2020-02-14 02:23:21 +00:00
|
|
|
},
|
|
|
|
"engines": {
|
2021-06-09 00:55:21 +00:00
|
|
|
"node": ">=12.20.1 <15",
|
|
|
|
"npm": ">=6.14.10 <7"
|
2020-02-14 02:23:21 +00:00
|
|
|
}
|
2021-02-23 00:09:59 +00:00
|
|
|
}
|