delete-old-posts-programmatically
Last commit date
assets
2 years ago
freemius
1 year ago
inc
1 year ago
languages
3 years ago
README.md
2 years ago
composer.json
5 years ago
delete-old-posts-premium.php
3 years ago
delete-old-posts-programmatically.php
3 years ago
delete-old-posts.php
1 year ago
package-lock.json
1 year ago
package.json
1 year ago
postcss.config.js
5 years ago
readme.txt
1 year ago
styles.css
2 years ago
tailwind.config.js
2 years ago
package.json
25 lines
| 1 | { |
| 2 | "name": "delete-old-posts-plugin", |
| 3 | "scripts": { |
| 4 | "build": "node_modules/.bin/postcss styles.css -o ./assets/css/tailwind.css", |
| 5 | "watch": "node_modules/.bin/postcss styles.css -o ./assets/css/tailwind.css --watch", |
| 6 | "start:message": "echo 'Watching for code changes. Start making changes!'", |
| 7 | "watch:php": "onchange 'inc/*.php' -- npm run build", |
| 8 | "watch:css": "onchange 'styles.css' -- npm run build", |
| 9 | "start": "npm run start:message & npm run watch:php & npm run watch:css" |
| 10 | }, |
| 11 | "dependencies": { |
| 12 | "onchange": "^7.1.0", |
| 13 | "postcss-import": "^14.0.1", |
| 14 | "postcss-loader": "^7.0.1", |
| 15 | "tom-select": "^2.4.1" |
| 16 | }, |
| 17 | "devDependencies": { |
| 18 | "@fullhuman/postcss-purgecss": "^3.1.3", |
| 19 | "autoprefixer": "^10.4.8", |
| 20 | "postcss": "^8.4.35", |
| 21 | "postcss-cli": "^8.3.1", |
| 22 | "tailwindcss": "^3.1.8" |
| 23 | } |
| 24 | } |
| 25 |