-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
executable file
·95 lines (95 loc) · 4.15 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
{
"name": "feedzy-rss-feeds",
"version": "5.0.1",
"description": "Feedzy RSS Feeds - lite version",
"repository": {
"type": "git",
"url": "git+https://github.com/Codeinwp/feedzy-rss-feeds.git"
},
"keywords": [
"wordpress-plugin"
],
"textdomain": "feedzy-rss-feeds",
"category": "plugins",
"author": "ThemeIsle <[email protected]>",
"license": "GPL-2.0+",
"bugs": {
"url": "https://github.com/Codeinwp/feedzy-rss-feeds/issues"
},
"scripts": {
"build": "npm-run-all build:*",
"build:block": "wp-scripts build --webpack-src-dir=js/FeedzyBlock --output-path=build/block --output-filename=index.js",
"build:loop": "wp-scripts build --webpack-src-dir=js/FeedzyLoop --output-path=build/loop --output-filename=index.js",
"build:onboarding": "wp-scripts build --webpack-src-dir=js/Onboarding --output-path=build/onboarding --output-filename=index.js",
"build:feedback": "wp-scripts build --webpack-src-dir=js/FeedBack --output-path=build/feedback --output-filename=index.js",
"build:actions": "wp-scripts build --webpack-src-dir=js/ActionPopup --output-path=build/action-popup --output-filename=index.js",
"build:conditions": "wp-scripts build --webpack-src-dir=js/Conditions --output-path=build/conditions --output-filename=index.js",
"build:review": "wp-scripts build --webpack-src-dir=js/Review --output-path=build/review --output-filename=index.js",
"dev": "npm-run-all --parallel dev:*",
"dev:block": "wp-scripts start --webpack-src-dir=js/FeedzyBlock --output-path=build/block --output-filename=index.js",
"dev:loop": "wp-scripts start --webpack-src-dir=js/FeedzyLoop --output-path=build/loop --output-filename=index.js",
"dev:onboarding": "wp-scripts start --webpack-src-dir=js/Onboarding --output-path=build/onboarding --output-filename=index.js",
"dev:feedback": "wp-scripts start --webpack-src-dir=js/FeedBack --output-path=build/feedback --output-filename=index.js",
"dev:actions": "wp-scripts start --webpack-src-dir=js/ActionPopup --output-path=build/action-popup --output-filename=index.js",
"dev:conditions": "wp-scripts start --webpack-src-dir=js/Conditions --output-path=build/conditions --output-filename=index.js",
"lint:js": "wp-scripts lint-js ./js",
"release": "semantic-release --debug",
"dist": "bash bin/dist.sh",
"grunt": "grunt",
"test:e2e": "wp-scripts test-playwright --config tests/e2e/playwright.config.js",
"test:e2e:debug": "wp-scripts test-playwright --config tests/e2e/playwright.config.js --ui",
"wp-env": "wp-env"
},
"pot": {
"reportmsgidbugsto": "https://github.com/Codeinwp/feedzy-rss-feeds/issues",
"languageteam": "Themeisle Translate <[email protected]>",
"lasttranslator": "Themeisle Translate Team <[email protected]>"
},
"devDependencies": {
"@playwright/test": "^1.44.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@wordpress/components": "^27.6.0",
"@wordpress/compose": "^6.35.0",
"@wordpress/data": "^9.28.0",
"@wordpress/dom-ready": "^3.58.0",
"@wordpress/e2e-test-utils-playwright": "^0.26.0",
"@wordpress/element": "^5.35.0",
"@wordpress/env": "^9.10.0",
"@wordpress/eslint-plugin": "^22.0.0",
"@wordpress/i18n": "^4.58.0",
"@wordpress/icons": "^9.49.0",
"@wordpress/media-utils": "^4.49.0",
"@wordpress/scripts": "^27.9.0",
"classnames": "^2.3.2",
"conventional-changelog-simple-preset": "^1.0.24",
"dayjs": "^1.10.4",
"eslint": "^8.57.1",
"grunt": "^1.4.0",
"grunt-version": "^2.0.0",
"grunt-wp-readme-to-markdown": "^2.0.1",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"query-string": "^7.0.0",
"raw-loader": "^4.0.2",
"replace-in-file": "^6.2.0",
"semantic-release": "^17.4.2",
"semantic-release-slack-bot": "^2.1.0"
},
"dependencies": {
"array-move": "^4.0.0",
"react-joyride": "^2.8.2",
"react-sortable-hoc": "^2.0.0"
},
"overrides": {
"react-sortable-hoc": {
"react": "18.3.1",
"react-dom": "18.3.1"
},
"@wordpress/components": {
"react": "18.3.1",
"react-dom": "18.3.1"
}
}
}