Files
harpLabs_Inc/package.json
2024-05-03 13:10:06 -04:00

34 lines
1.5 KiB
JSON

{
"name": "theme-starter-boilerplate-theme",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"preview": "npm-run-all --parallel sync start",
"sync": "browser-sync start --proxy \"harplabs.test\" --files \"theme-starter-theme\" --no-notify --no-inject-changes",
"wp-build": "wp-scripts build --webpack-no-externals --output-path=assets/js",
"wp-start": "wp-scripts start --webpack-no-externals --output-path=assets/js",
"tailwind-watch": "npx tailwindcss -i ./src/styles/vendors/tailwind/_source.scss -o ./src/styles/vendors/tailwind/_tailwind.scss --watch",
"tailwind-build": "npx tailwindcss -i ./src/styles/vendors/tailwind/_source.scss -o ./src/styles/vendors/tailwind/_tailwind.scss",
"sass-dev": "npx sass --watch --no-source-map ./src/styles/styles.scss:./assets/css/styles.css",
"sass-prod": "npx sass --style=compressed --no-source-map ./src/styles/styles.scss:./assets/css/styles.css",
"dev": "npm-run-all --parallel wp-start tailwind-watch sass-dev sync",
"prod": "npm-run-all --sequential tailwind-build sass-prod wp-build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@wordpress/scripts": "^27.4.0",
"browser-sync": "^3.0.2",
"npm-run-all": "^4.1.5",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"tailwindcss": "^3.4.1",
"sass": "^1.61.0"
}
}