strapi-plugin-config-sync/package.json

81 lines
2.2 KiB
JSON
Raw Normal View History

2021-03-19 19:04:22 +01:00
{
"name": "strapi-plugin-config-sync",
2021-05-05 22:34:54 +02:00
"version": "0.1.6",
2021-10-13 17:31:16 +02:00
"description": "Enables a development workflow in Strapi for easy migration of config data across environments.",
2021-03-19 19:04:22 +01:00
"strapi": {
2021-10-13 17:31:16 +02:00
"displayName": "Config Sync",
"name": "config-sync",
2021-03-26 19:53:18 +01:00
"icon": "sync",
2021-10-13 17:31:16 +02:00
"description": "sitemap.plugin.description",
"required": false,
"kind": "plugin"
},
"scripts": {
"eslint": "eslint --max-warnings=0 './**/*.{js,jsx}'",
"eslint:fix": "eslint --fix './**/*.{js,jsx}'",
"test:unit": "jest --verbose"
2021-03-20 00:57:12 +01:00
},
"dependencies": {
2021-10-13 17:31:16 +02:00
"redux-thunk": "^2.3.0",
"react-diff-viewer": "^3.1.1"
2021-03-19 19:04:22 +01:00
},
"author": {
2021-03-20 00:57:12 +01:00
"name": "Boaz Poolman",
"email": "info@boazpoolman.nl",
"url": "https://github.com/boazpoolman"
2021-03-19 19:04:22 +01:00
},
"maintainers": [
{
2021-03-20 00:57:12 +01:00
"name": "Boaz Poolman",
"email": "info@boazpoolman.nl",
"url": "https://github.com/boazpoolman"
2021-03-19 19:04:22 +01:00
}
],
2021-10-13 17:31:16 +02:00
"files": [
"admin",
"server",
"public",
"strapi-admin.js",
"strapi-server.js"
],
"devDependencies": {
"@strapi/helper-plugin": "4.0.0-beta.2",
"@strapi/icons": "^0.0.1-alpha.42",
"@strapi/parts": "^0.0.1-alpha.42",
"@strapi/utils": "4.0.0-beta.2",
"babel-eslint": "9.0.0",
"codecov": "^3.8.3",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-react-app": "^3.0.7",
"eslint-import-resolver-webpack": "^0.11.0",
"eslint-loader": "2.1.1",
"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",
"immutable": "^4.0.0-rc.14",
"jest": "^26.0.1",
"jest-cli": "^26.0.1",
"jest-styled-components": "^7.0.2",
"lodash": "^4.17.11",
"react": "^16.8.6",
"react-intl": "^5.20.12",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"redux-immutable": "^4.0.0",
"styled-components": "^5.2.3"
},
"bugs": {
"url": "https://github.com/boazpoolman/strapi-plugin-config-sync/issues"
},
"homepage": "https://github.com/boazpoolman/strapi-plugin-config-sync#readme",
2021-03-19 19:04:22 +01:00
"engines": {
2021-10-13 17:31:16 +02:00
"node": ">=10.0.0",
2021-03-19 19:04:22 +01:00
"npm": ">=6.0.0"
},
2021-10-13 17:31:16 +02:00
"license": "MIT"
2021-03-19 19:04:22 +01:00
}