-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 3.51 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 3.51 KB
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
{
"name": "themeisle-companion",
"version": "3.0.5",
"description": "Orbit Fox",
"repository": {
"type": "git",
"url": "git+https://github.com/Codeinwp/themeisle-companion.git"
},
"keywords": [
"wordpress-plugin"
],
"textdomain": "themeisle-companion",
"author": "ThemeIsle <friends@themeisle.com>",
"license": "GPL-2.0+",
"category": "plugins",
"bugs": {
"url": "https://github.com/Codeinwp/themeisle-companion/issues"
},
"pot": {
"reportmsgidbugsto": "https://github.com/Codeinwp/themeisle-companion/issues",
"languageteam": "Themeisle Translate <friends@themeisle.com>",
"lasttranslator": "Themeisle Translate Team <friends@themeisle.com>"
},
"scripts": {
"start": "npm-run-all --parallel start:*",
"start:dash": "wp-scripts start dashboard/src/dashboard.js --output-path=dashboard/build --hot --allowed-hosts all --config webpack.config.js",
"start:template": "wp-scripts start obfx_modules/template-directory/src/template-directory.js --output-path=obfx_modules/template-directory/js --hot --allowed-hosts all --port 8081 --config webpack.config.js",
"start:stock": "wp-scripts start obfx_modules/mystock-import/js/src/registerPlugin.js --output-path=obfx_modules/mystock-import/js/build --hot --allowed-hosts all --port 8082 --config webpack.config.js",
"start:login-customizer": "wp-scripts start obfx_modules/login-customizer/js/src/customizer.js --output-path=obfx_modules/login-customizer/js/build --hot --allowed-hosts all --port 8083 --config webpack.config.js",
"build": "npm-run-all build:*",
"build:dash": "wp-scripts build dashboard/src/dashboard.js --output-path=dashboard/build --config webpack.config.js",
"build:template": "wp-scripts build obfx_modules/template-directory/src/template-directory.js --output-path=obfx_modules/template-directory/js --config webpack.config.js",
"build:stock": "wp-scripts build obfx_modules/mystock-import/js/src/registerPlugin.js --output-path=obfx_modules/mystock-import/js/build --config webpack.config.js",
"build:login-customizer": "wp-scripts build obfx_modules/login-customizer/js/src/customizer.js --output-path=obfx_modules/login-customizer/js/build --config webpack.config.js",
"lint": "eslint dashboard/src/**/*.{js,jsx} obfx_modules/login-customizer/js/src/**/*.{js,jsx}",
"lint:fix": "eslint dashboard/src/**/*.{js,jsx} obfx_modules/login-customizer/js/src/**/*.{js,jsx} --fix",
"release": "npx semantic-release",
"i18n": "grunt i18n",
"dist": "bash bin/dist.sh"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@wordpress/eslint-plugin": "^22.13.0",
"@wordpress/scripts": "^26.19.0",
"conventional-changelog-simple-preset": "^1.0.15",
"eslint": "^9.32.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"grunt": "^1.3.0",
"grunt-version": "^2.0.0",
"grunt-wp-i18n": "^1.0.3",
"grunt-wp-readme-to-markdown": "^2.0.1",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"replace-in-file": "^6.2.0",
"semantic-release": "^17.4.2",
"semantic-release-slack-bot": "^4.0.2"
},
"dependencies": {
"@chakra-ui/react": "^3.22.0",
"@emotion/react": "^11.14.0",
"buffer": "^6.0.3",
"classnames": "^2.3.1",
"flickr-sdk": "^3.10.0",
"lucide-react": "^0.525.0",
"querystring": "^0.2.1",
"stream": "0.0.2",
"timers": "^0.1.1"
}
}