| 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.4.1", |
| 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 |
}, |
| 17 |
"devDependencies": { |
| 18 |
"@wordpress/eslint-plugin": "^21.6.0", |
| 19 |
"@wordpress/scripts": "^30.7.0", |
| 20 |
"copy-webpack-plugin": "^12.0.2", |
| 21 |
"eslint-plugin-babel": "^5.3.1", |
| 22 |
"eslint-plugin-no-jquery": "^3.0.2", |
| 23 |
"eslint-plugin-react": "^7.35.2", |
| 24 |
"path": "^0.12.7", |
| 25 |
"webpack-cli": "^5.1.4", |
| 26 |
"webpack-remove-empty-scripts": "^1.0.4" |
| 27 |
}, |
| 28 |
"dependencies": { |
| 29 |
"@elementor/icons": "1.12.0", |
| 30 |
"@elementor/ui": "1.20.3", |
| 31 |
"composer": "^4.1.0", |
| 32 |
"react": "^18.3.1", |
| 33 |
"react-dom": "^18.3.1" |
| 34 |
} |
| 35 |
} |
| 36 |
|