2021-10-07 02:03:13 +00:00
|
|
|
{
|
2022-04-27 21:54:54 +00:00
|
|
|
"name": "woocommerce-monorepo",
|
|
|
|
"title": "WooCommerce Monorepo",
|
|
|
|
"description": "Monorepo for the WooCommerce ecosystem",
|
|
|
|
"homepage": "https://woocommerce.com/",
|
2023-03-24 01:02:20 +00:00
|
|
|
"engines": {
|
2023-04-25 06:49:30 +00:00
|
|
|
"node": "^16.14.1",
|
2023-06-29 04:51:29 +00:00
|
|
|
"pnpm": "^8.6.5"
|
2023-03-24 01:02:20 +00:00
|
|
|
},
|
2022-04-27 21:54:54 +00:00
|
|
|
"private": true,
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/woocommerce/woocommerce.git"
|
|
|
|
},
|
|
|
|
"author": "Automattic",
|
|
|
|
"license": "GPL-3.0-or-later",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/woocommerce/woocommerce/issues"
|
|
|
|
},
|
2023-04-11 21:26:21 +00:00
|
|
|
"bin": {
|
2023-04-12 19:10:02 +00:00
|
|
|
"utils": "./tools/monorepo-utils/bin/run"
|
2023-04-11 21:26:21 +00:00
|
|
|
},
|
2022-04-27 21:54:54 +00:00
|
|
|
"scripts": {
|
2022-09-15 21:21:42 +00:00
|
|
|
"build": "pnpm exec turbo run turbo:build",
|
|
|
|
"test": "pnpm exec turbo run turbo:test",
|
2023-01-05 21:51:58 +00:00
|
|
|
"clean": "pnpm store prune && git clean -fx **/node_modules && 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",
|
2022-04-27 21:54:54 +00:00
|
|
|
"git:update-hooks": "rm -r .git/hooks && mkdir -p .git/hooks && husky install",
|
2022-07-14 14:36:15 +00:00
|
|
|
"create-extension": "node ./tools/create-extension/index.js",
|
2022-08-24 15:15:22 +00:00
|
|
|
"cherry-pick": "node ./tools/cherry-pick/bin/run",
|
2023-04-11 21:26:21 +00:00
|
|
|
"sync-dependencies": "pnpm exec syncpack -- fix-mismatches",
|
2023-05-11 05:23:19 +00:00
|
|
|
"utils": "node ./tools/monorepo-utils/dist/index.js"
|
2022-04-27 21:54:54 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-03-24 01:02:20 +00:00
|
|
|
"@babel/preset-env": "^7.20.2",
|
|
|
|
"@babel/runtime": "^7.21.0",
|
|
|
|
"@types/node": "^16.18.18",
|
2022-04-27 21:54:54 +00:00
|
|
|
"@woocommerce/eslint-plugin": "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-03-24 01:02:20 +00:00
|
|
|
"core-js": "^3.29.1",
|
|
|
|
"css-loader": "^6.7.3",
|
|
|
|
"glob": "^7.2.3",
|
2022-04-27 21:54:54 +00:00
|
|
|
"husky": "^7.0.4",
|
2023-03-24 01:02:20 +00:00
|
|
|
"jest": "^27.5.1",
|
|
|
|
"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",
|
2023-03-24 01:02:20 +00:00
|
|
|
"sass": "^1.59.3",
|
|
|
|
"sass-loader": "^10.4.1",
|
2023-05-30 23:45:10 +00:00
|
|
|
"syncpack": "^10.1.0",
|
2023-04-28 04:34:49 +00:00
|
|
|
"turbo": "^1.9.3",
|
2023-03-24 01:02:20 +00:00
|
|
|
"typescript": "^4.9.5",
|
2022-05-30 07:20:08 +00:00
|
|
|
"url-loader": "^1.1.2",
|
2023-03-24 01:02:20 +00:00
|
|
|
"webpack": "^5.76.2"
|
2022-04-27 21:54:54 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@babel/core": "7.12.9",
|
2023-03-24 01:02:20 +00:00
|
|
|
"@wordpress/babel-plugin-import-jsx-pragma": "^3.2.0",
|
|
|
|
"@wordpress/babel-preset-default": "^6.17.0",
|
2022-04-27 21:54:54 +00:00
|
|
|
"lodash": "^4.17.21",
|
|
|
|
"wp-textdomain": "1.0.1"
|
2023-03-06 21:38:05 +00:00
|
|
|
},
|
|
|
|
"pnpm": {
|
|
|
|
"overrides": {
|
|
|
|
"@types/react": "^17.0.2",
|
|
|
|
"react": "^17.0.2"
|
|
|
|
}
|
2022-04-27 21:54:54 +00:00
|
|
|
}
|
2021-11-04 14:36:58 +00:00
|
|
|
}
|