-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
100 lines (100 loc) · 4.37 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
{
"name": "bluehost-wordpress-plugin",
"version": "3.15.3",
"description": "WordPress plugin that integrates your WordPress site with the Bluehost control panel, including performance, security, and update features.",
"author": {
"name": "Bluehost",
"homepage": "https://bluehost.com"
},
"license": "GPL-2.0-or-later",
"private": true,
"keywords": [
"wordpress",
"plugin"
],
"homepage": "https://github.com/bluehost/bluehost-wordpress-plugin#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/bluehost/bluehost-wordpress-plugin.git"
},
"bugs": {
"url": "https://github.com/bluehost/bluehost-wordpress-plugin/issues"
},
"contributors": [
"Abdulrahman Al Ani (https://alani.dev/)",
"Evan Mullins (https://evanmullins.com)",
"Jonathan Desrosiers (https://jonathandesrosiers.com)",
"Micah Wood (https://wpscholar.com)",
"William Earnhardt (https://wearnhardt.com)"
],
"engines": {
"node": ">=20",
"npm": ">=10"
},
"dependencies": {
"@heroicons/react": "^2.1.5",
"@newfold-labs/wp-module-ecommerce": "^1.4.3",
"@newfold-labs/wp-module-facebook": "^1.0.9",
"@newfold-labs/wp-module-runtime": "^1.0.12",
"@newfold/ui-component-library": "^1.1.0",
"@reduxjs/toolkit": "^2.2.7",
"@wordpress/compose": "^7.11.0",
"@wordpress/dom-ready": "^4.11.0",
"@wordpress/element": "^6.11.0",
"@wordpress/html-entities": "^4.11.0",
"@wordpress/i18n": "^5.11.0",
"@wordpress/icons": "^10.11.0",
"ajv": "^8.17.1",
"classnames": "^2.5.1",
"jquery": "^3.7.1",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-error-boundary": "^4.1.2",
"react-router-dom": "^6.26.1",
"react-use": "^17.5.1",
"semver": "^7.6.3"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.8",
"@testing-library/cypress": "^10.0.2",
"@wordpress/env": "^10.10.0",
"@wordpress/eslint-plugin": "^21.4.0",
"@wordpress/scripts": "^30.4.0",
"cypress": "^13.15.1",
"cypress-axe": "^1.5.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.1",
"node-fetch": "^2.7.0",
"tailwindcss": "^3.4.14"
},
"scripts": {
"build": "NODE_ENV=production wp-scripts build",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses --production",
"create:dev": "rm -rf ./bluehost-wordpress-plugin ./bluehost-wordpress-plugin.zip && npm run create:dist && npm run create:zip",
"create:dist": "rsync -r --include-from=.distinclude --exclude-from=.distignore . ./bluehost-wordpress-plugin",
"create:zip": "cd ./bluehost-wordpress-plugin && zip -r -9 ../bluehost-wordpress-plugin.zip . && ls -lh ../bluehost-wordpress-plugin.zip",
"cypress": "npm cypress open",
"develop": "npm run start",
"develop:analyzer": "npm run start:analyzer",
"i18n": "wpi18n addtextdomain && composer run i18n",
"lint:css": "wp-scripts lint-style '**/*.css'",
"lint:js": "wp-scripts lint-js ./src",
"lint:js:fix": "wp-scripts lint-js ./src --fix",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"lint:yml": "yamllint --ignore=node_modules/** --ignore=vendor/** **/*.yml",
"log:watch": "wp-env run wordpress 'tail -f /var/www/html/wp-content/debug.log'",
"php-deps": "composer install --no-dev --optimize-autoloader",
"postprepare": "npm run set-wp-version",
"prebuild:cleanup": "rm -rf ./build ./bluehost-wordpress-plugin ./bluehost-wordpress-plugin.zip ./vendor",
"set-wp-version": "node ./set-latest-wp-version.js",
"simulate-runner-build": "npm run prebuild:cleanup && npm i --legacy-peer-deps && npm run php-deps && npm run build && npm run create:dist && npm run create:zip",
"srb": "npm run simulate-runner-build",
"start": "NODE_ENV=develop wp-scripts start",
"start:analyzer": "npm run start --webpack-bundle-analyzer",
"storybook:dev": "start-storybook -c ./storybook",
"storybook:build": "build-storybook -c ./storybook -o ./.docs",
"test:e2e": "npx cypress run",
"test:unit": "wp-scripts test-unit-js"
}
}