| 1 |
{ |
| 2 |
"name": "hello-plus", |
| 3 |
"slug": "hello-plus", |
| 4 |
"homepage": "https://elementor.com/", |
| 5 |
"description": "A quick-start theme for Elementor.", |
| 6 |
"version": "1.7.4", |
| 7 |
"scripts": { |
| 8 |
"start": "wp-scripts start", |
| 9 |
"build:dev": "composer update && composer install && wp-scripts build", |
| 10 |
"build": "composer install --no-dev && wp-scripts build --env=production", |
| 11 |
"lint:js": "wp-scripts lint-js", |
| 12 |
"clean": "rimraf build && rimraf $npm_package_name", |
| 13 |
"build:dir": "npm run clean && npm run build:dev && rsync -av --exclude-from=.buildignore . hello-plus", |
| 14 |
"package": "npm run clean && npm run build && rsync -av --exclude-from=.buildignore . $npm_package_name", |
| 15 |
"package:zip": "npm run package && zip -r $npm_package_name.$npm_package_version.zip ./$npm_package_name/*", |
| 16 |
"test:php": "docker-compose -f bin/docker-compose.yml run --rm wordpress_phpunit phpunit", |
| 17 |
"test:playwright": "playwright test -c tests/playwright/playwright.config.ts", |
| 18 |
"test:playwright:debug": "npm run test:playwright -- --debug", |
| 19 |
"test:setup:playwright": "wp-env run cli bash hello-plus-config/setup.sh && wp-env run tests-cli bash hello-plus-config/setup.sh", |
| 20 |
"test:setup:chromium": "npx playwright install chromium" |
| 21 |
}, |
| 22 |
"devDependencies": { |
| 23 |
"@elementor/wp-lite-env": "^0.0.20", |
| 24 |
"@playwright/test": "1.52.0", |
| 25 |
"@typescript-eslint/parser": "^6.21.0", |
| 26 |
"@wordpress/eslint-plugin": "^21.6.0", |
| 27 |
"@wordpress/scripts": "^30.18.0", |
| 28 |
"copy-webpack-plugin": "^12.0.2", |
| 29 |
"dotenv": "^16.5.0", |
| 30 |
"eslint-import-resolver-typescript": "^4.3.2", |
| 31 |
"eslint-plugin-babel": "^5.3.1", |
| 32 |
"eslint-plugin-no-jquery": "^3.0.2", |
| 33 |
"eslint-plugin-react": "^7.35.2", |
| 34 |
"path": "^0.12.7", |
| 35 |
"typescript": "^5.8.3", |
| 36 |
"webpack-cli": "^5.1.4", |
| 37 |
"webpack-remove-empty-scripts": "^1.0.4" |
| 38 |
}, |
| 39 |
"dependencies": { |
| 40 |
"@elementor/icons": "1.12.0", |
| 41 |
"@elementor/ui": "1.20.3", |
| 42 |
"composer": "^4.1.0", |
| 43 |
"react": "^18.3.1", |
| 44 |
"react-dom": "^18.3.1" |
| 45 |
} |
| 46 |
} |
| 47 |
|