strapi-plugin-config-sync/package.json

100 lines
2.9 KiB
JSON

{
"name": "strapi-plugin-config-sync",
"version": "1.2.5",
"description": "Migrate your config data across environments using the CLI or Strapi admin panel.",
"strapi": {
"displayName": "Config Sync",
"name": "config-sync",
"icon": "sync",
"description": "Migrate your config data across environments using the CLI or Strapi admin panel.",
"required": false,
"kind": "plugin"
},
"bin": {
"config-sync": "./bin/config-sync"
},
"scripts": {
"eslint": "eslint --max-warnings=0 './**/*.{js,jsx}'",
"eslint:fix": "eslint --fix './**/*.{js,jsx}'",
"test:unit": "jest --verbose",
"test:integration": "cd playground && node_modules/.bin/jest --verbose --forceExit --detectOpenHandles",
"plugin:install": "yarn install && rm -rf node_modules/@strapi/helper-plugin",
"playground:install": "cd playground && yarn install",
"playground:build": "cd playground && yarn build",
"playground:develop": "cd playground && yarn develop"
},
"dependencies": {
"chalk": "^4.1.2",
"cli-table": "^0.3.6",
"commander": "^8.3.0",
"git-diff": "^2.0.6",
"immutable": "^3.8.2",
"inquirer": "^8.2.0",
"react-diff-viewer-continued": "3.2.6",
"redux-immutable": "^4.0.0",
"react-intl": "6.6.2",
"redux-thunk": "^2.3.0"
},
"author": {
"name": "Boaz Poolman",
"email": "boaz@pluginpal.io",
"url": "https://github.com/boazpoolman"
},
"maintainers": [
{
"name": "Boaz Poolman",
"email": "boaz@pluginpal.io",
"url": "https://github.com/boazpoolman"
}
],
"files": [
"admin",
"server",
"bin",
"strapi-admin.js",
"strapi-server.js"
],
"peerDependencies": {
"@strapi/strapi": "^5.0.0-beta.6"
},
"devDependencies": {
"@strapi/design-system": "^1.16.0",
"@strapi/icons": "^1.16.0",
"@strapi/utils": "5.0.0-beta.6",
"@strapi/strapi": "5.0.0-beta.6",
"babel-eslint": "9.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-react-app": "^3.0.7",
"eslint-import-resolver-webpack": "^0.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-flowtype": "2.50.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^2.3.0",
"jest": "^29.7.0",
"jest-cli": "^29.3.1",
"jest-styled-components": "^7.0.2",
"lodash": "^4.17.11",
"react": "^17.0.2",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"styled-components": "^5.2.3"
},
"bugs": {
"url": "https://github.com/pluginpal/strapi-plugin-config-sync/issues"
},
"homepage": "https://www.pluginpal.io/plugin/config-sync",
"engines": {
"node": ">=18.0.0",
"npm": ">=6.0.0"
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}