-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
135 lines (135 loc) · 4.16 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "strapi-plugin-config-sync",
"version": "3.1.1",
"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"
},
"exports": {
"./strapi-admin": {
"source": "./admin/src/index.js",
"import": "./dist/admin/index.mjs",
"require": "./dist/admin/index.js",
"default": "./dist/admin/index.js"
},
"./strapi-server": {
"source": "./server/index.js",
"import": "./dist/server/index.mjs",
"require": "./dist/server/index.js",
"default": "./dist/server/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"develop": "strapi-plugin watch:link",
"watch": "pack-up watch",
"build": "pack-up build && yalc push --publish",
"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",
"test:e2e": "cypress open",
"playground:install": "yarn playground:yalc-add-link && cd playground && yarn install",
"playground:yalc-add": "cd playground && yalc add strapi-plugin-config-sync",
"playground:yalc-add-link": "cd playground && yalc add --link strapi-plugin-config-sync",
"playground:build": "cd playground && yarn build",
"playground:develop": "cd playground && yarn develop",
"playground:start": "cd playground && yarn start"
},
"dependencies": {
"adm-zip": "^0.5.16",
"chalk": "^4.1.2",
"cli-table": "^0.3.6",
"commander": "^8.3.0",
"file-saver": "^2.0.5",
"git-diff": "^2.0.6",
"immutable": "^3.8.2",
"inquirer": "^8.2.0",
"lodash": "^4.17.11",
"react-diff-viewer-continued": "3.2.6",
"react-intl": "6.6.2",
"react-query": "^3.39.3",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"redux-immutable": "^4.0.0",
"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": [
"dist",
"bin"
],
"peerDependencies": {
"@strapi/admin": "^5.0.0",
"@strapi/design-system": "^2.0.0-rc.14",
"@strapi/icons": "^2.0.0-rc.14",
"@strapi/strapi": "^5.0.0",
"@strapi/utils": "^5.0.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0",
"react-router-dom": "^6.0.0",
"styled-components": "^6.0.0"
},
"devDependencies": {
"@strapi/admin": "^5.0.0",
"@strapi/design-system": "^2.0.0-rc.14",
"@strapi/icons": "^2.0.0-rc.14",
"@strapi/sdk-plugin": "^5.0.0",
"@strapi/strapi": "^5.0.0",
"@strapi/utils": "^5.0.0",
"babel-eslint": "9.0.0",
"cypress": "^13.9.0",
"cypress-terminal-report": "^6.0.2",
"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-cypress": "^3.2.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",
"nodemon": "^3.1.7",
"react": "^17.0.0",
"styled-components": "^5.2.3",
"yalc": "^1.0.0-pre.53"
},
"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"
}
}