forked from pluginpal/strapi-plugin-config-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.86 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "strapi-plugin-config-sync",
"version": "1.1.3",
"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",
"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.3",
"redux-immutable": "^4.0.0",
"redux-thunk": "^2.3.0"
},
"author": {
"name": "Boaz Poolman",
"email": "info@boazpoolman.nl",
"url": "https://github.com/boazpoolman"
},
"maintainers": [
{
"name": "Boaz Poolman",
"email": "info@boazpoolman.nl",
"url": "https://github.com/boazpoolman"
}
],
"files": [
"admin",
"server",
"bin",
"strapi-admin.js",
"strapi-server.js"
],
"peerDependencies": {
"@strapi/strapi": "^4.0.0"
},
"devDependencies": {
"@strapi/design-system": "^1.11.0",
"@strapi/helper-plugin": "^4.14.4",
"@strapi/icons": "^1.11.0",
"@strapi/utils": "^4.14.4",
"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.3.1",
"jest-cli": "^29.3.1",
"jest-styled-components": "^7.0.2",
"lodash": "^4.17.11",
"react": "^17.0.2",
"react-intl": "^5.20.12",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"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",
"engines": {
"node": ">=18.0.0",
"npm": ">=6.0.0"
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}