themes-wordpress/package.json

58 lines
2.1 KiB
JSON
Raw Normal View History

2020-10-06 21:12:21 +00:00
{
"name": "themes",
2022-01-13 11:46:42 +00:00
"version": "1.0.49",
2020-10-06 21:20:07 +00:00
"description": "Automattic public themes",
2020-10-06 21:12:21 +00:00
"author": "automattic",
"license": "GPL-2.0",
2021-03-31 15:47:01 +00:00
"prettier": "@wordpress/prettier-config",
"scripts": {
"sandbox:pull": "./sandbox.sh pull",
"sandbox:push": "./sandbox.sh push",
"sandbox:push:ignore": "./sandbox.sh push --ignore",
"sandbox:push:force": "./sandbox.sh push --force",
"sandbox:watch": "chokidar '**/*' -i '*/node_modules' -i '.git' -c './sandbox.sh push --ignore' --initial",
"sandbox:clean:git": "node ./theme-utils.mjs clean-sandbox-git",
"sandbox:clean:svn": "node ./theme-utils.mjs clean-sandbox-svn",
"sandbox:clean-all:git": "node ./theme-utils.mjs clean-all-sandbox-git",
"sandbox:clean-all:svn": "node ./theme-utils.mjs clean-all-sandbox-svn",
"local:clean": "git reset --hard HEAD; git clean -fd",
"batch:install": "./theme-batch-utils.sh install-dependencies",
"batch:audit:fix": "./theme-batch-utils.sh audit-dependencies",
"deploy:version-bump": "node ./theme-utils.mjs version-bump-themes",
"deploy:push:all": "node ./theme-utils.mjs push-to-sandbox",
"deploy:push:changes": "node ./theme-utils.mjs push-changes-to-sandbox",
"deploy:push:premium": "node ./theme-utils.mjs push-premium-to-sandbox",
"deploy:git": "node ./theme-utils.mjs push-button-deploy-git",
"deploy:svn": "node ./theme-utils.mjs push-button-deploy-svn",
"deploy:preview": "node ./theme-utils.mjs deploy-preview",
"build:zip": "node ./theme-utils.mjs build-com-zip",
"build:variations": "node ./variations/build-variations.mjs"
},
2020-10-06 21:12:21 +00:00
"devDependencies": {
"@octokit/rest": "^18.12.0",
"@wordpress/prettier-config": "^1.1.1",
"@wordpress/scripts": "^19.2.2",
"@wordpress/stylelint-config": "^19.1.0",
"chokidar-cli": "^3.0.0",
"fs-extra": "^10.0.0",
"husky": "^7.0.4",
"inquirer": "^8.2.0",
"lint-staged": "^12.1.7",
"lodash": "^4.17.21",
"open": "^8.4.0"
2020-10-06 21:12:21 +00:00
},
"husky": {
"hooks": {
2021-04-02 08:32:27 +00:00
"pre-commit": "lint-staged && node pre-commit-hook.js"
2020-10-06 21:12:21 +00:00
}
2021-03-31 15:47:01 +00:00
},
2021-04-02 08:32:27 +00:00
"lint-staged": {
2021-04-27 09:02:48 +00:00
"*.{scss}": [
2021-04-23 17:01:46 +00:00
"wp-scripts lint-style --fix="
2021-04-02 08:32:27 +00:00
]
},
2021-03-31 15:47:01 +00:00
"dependencies": {
"wp-prettier": "^2.0.5"
2020-10-06 21:12:21 +00:00
}
}