2021-10-07 02:03:13 +00:00
|
|
|
{
|
2022-04-27 21:54:54 +00:00
|
|
|
"name": "woocommerce-monorepo",
|
2023-12-06 19:36:12 +00:00
|
|
|
"title": "WooCommerce Monorepo",
|
2022-04-27 21:54:54 +00:00
|
|
|
"description": "Monorepo for the WooCommerce ecosystem",
|
2023-11-06 11:45:26 +00:00
|
|
|
"homepage": "https://woo.com/",
|
2023-12-06 19:36:12 +00:00
|
|
|
"engines": {
|
|
|
|
"node": "^16.14.1",
|
2023-12-18 07:31:49 +00:00
|
|
|
"pnpm": "^8.12.1"
|
2023-03-24 01:02:20 +00:00
|
|
|
},
|
2023-12-06 19:36:12 +00:00
|
|
|
"private": true,
|
2022-04-27 21:54:54 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/woocommerce/woocommerce.git"
|
|
|
|
},
|
2023-12-06 17:32:32 +00:00
|
|
|
"author": "Automattic",
|
2023-12-06 19:36:12 +00:00
|
|
|
"license": "GPL-3.0-or-later",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/woocommerce/woocommerce/issues"
|
|
|
|
},
|
2022-04-27 21:54:54 +00:00
|
|
|
"scripts": {
|
2024-01-15 22:06:55 +00:00
|
|
|
"build": "pnpm -r --workspace-concurrency=Infinity --stream '/^build:project:.*$/'",
|
2023-11-02 23:59:15 +00:00
|
|
|
"test": "pnpm -r test",
|
2023-11-17 18:11:56 +00:00
|
|
|
"lint": "pnpm -r lint",
|
2023-11-02 23:59:15 +00:00
|
|
|
"cherry-pick": "node ./tools/cherry-pick/bin/run",
|
2024-03-07 19:30:37 +00:00
|
|
|
"clean": "rimraf -g '**/node_modules' '**/.wireit' && pnpm store prune && pnpm i",
|
2022-04-27 21:54:54 +00:00
|
|
|
"preinstall": "npx only-allow pnpm",
|
2023-04-13 22:11:13 +00:00
|
|
|
"postinstall": "pnpm git:update-hooks",
|
2024-01-08 18:13:42 +00:00
|
|
|
"git:update-hooks": "if test -d .git; then rm -rf .git/hooks && mkdir -p .git/hooks && husky install; else husky install; fi",
|
2023-04-11 21:26:21 +00:00
|
|
|
"sync-dependencies": "pnpm exec syncpack -- fix-mismatches",
|
2024-01-13 04:32:14 +00:00
|
|
|
"utils": "./tools/monorepo-utils/bin/run"
|
2022-04-27 21:54:54 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-12-09 15:12:20 +00:00
|
|
|
"@babel/preset-env": "^7.23.5",
|
|
|
|
"@babel/runtime": "^7.23.5",
|
|
|
|
"@types/node": "^16.18.68",
|
2022-04-27 21:54:54 +00:00
|
|
|
"@woocommerce/eslint-plugin": "workspace:*",
|
2024-01-13 04:32:14 +00:00
|
|
|
"@woocommerce/monorepo-utils": "workspace:*",
|
2023-03-08 21:13:25 +00:00
|
|
|
"@wordpress/data": "wp-6.0",
|
2023-05-30 23:45:10 +00:00
|
|
|
"@wordpress/eslint-plugin": "14.7.0",
|
|
|
|
"@wordpress/prettier-config": "2.17.0",
|
2023-03-24 01:02:20 +00:00
|
|
|
"babel-loader": "^8.3.0",
|
2022-04-27 21:54:54 +00:00
|
|
|
"chalk": "^4.1.2",
|
2022-05-30 07:20:08 +00:00
|
|
|
"copy-webpack-plugin": "^10.2.4",
|
2023-12-09 15:12:20 +00:00
|
|
|
"core-js": "^3.34.0",
|
|
|
|
"css-loader": "^6.8.1",
|
2023-03-24 01:02:20 +00:00
|
|
|
"glob": "^7.2.3",
|
2024-03-25 18:05:09 +00:00
|
|
|
"husky": "^9.0.11",
|
2023-12-05 08:36:30 +00:00
|
|
|
"jest": "~27.5.1",
|
2023-03-24 01:02:20 +00:00
|
|
|
"lint-staged": "^12.5.0",
|
2022-04-27 21:54:54 +00:00
|
|
|
"mkdirp": "^1.0.4",
|
2023-03-24 01:02:20 +00:00
|
|
|
"moment": "^2.29.4",
|
2022-04-27 21:54:54 +00:00
|
|
|
"node-stream-zip": "^1.15.0",
|
2023-03-08 21:13:25 +00:00
|
|
|
"postcss-loader": "^4.3.0",
|
2023-05-30 23:45:10 +00:00
|
|
|
"prettier": "npm:wp-prettier@^2.8.5",
|
2023-03-24 01:02:20 +00:00
|
|
|
"regenerator-runtime": "^0.13.11",
|
2022-04-27 21:54:54 +00:00
|
|
|
"request": "^2.88.2",
|
2024-03-07 19:30:37 +00:00
|
|
|
"rimraf": "^3.0.2",
|
2023-12-09 15:12:20 +00:00
|
|
|
"sass": "^1.69.5",
|
|
|
|
"sass-loader": "^10.5.0",
|
|
|
|
"syncpack": "^10.9.3",
|
|
|
|
"typescript": "^5.3.3",
|
2022-05-30 07:20:08 +00:00
|
|
|
"url-loader": "^1.1.2",
|
2023-12-09 15:12:20 +00:00
|
|
|
"webpack": "^5.89.0"
|
2022-04-27 21:54:54 +00:00
|
|
|
},
|
2023-12-06 19:36:12 +00:00
|
|
|
"dependencies": {
|
|
|
|
"@babel/core": "7.12.9",
|
|
|
|
"@wordpress/babel-plugin-import-jsx-pragma": "^3.2.0",
|
|
|
|
"@wordpress/babel-preset-default": "^6.17.0",
|
|
|
|
"lodash": "^4.17.21",
|
|
|
|
"wp-textdomain": "1.0.1"
|
2023-03-06 21:38:05 +00:00
|
|
|
},
|
|
|
|
"pnpm": {
|
|
|
|
"overrides": {
|
2023-12-09 15:16:39 +00:00
|
|
|
"@types/react": "^17.0.71",
|
2023-12-05 08:36:30 +00:00
|
|
|
"react": "^17.0.2",
|
|
|
|
"react-resize-aware": "3.1.1"
|
2023-03-06 21:38:05 +00:00
|
|
|
}
|
2023-12-06 19:36:12 +00:00
|
|
|
}
|
2021-11-04 14:36:58 +00:00
|
|
|
}
|