-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.12 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
{
"name": "custom-post-types-taxonomies",
"description": "Custom Post Types and Taxonomies",
"license": "GPL-2.0-only",
"author": {
"name": "Bruno Freiberger",
"email": "freibergergarcia@gmail.com",
"url": "https://github.com/freibergergarcia"
},
"keywords": [
"wordpress",
"plugin",
"post types",
"post type",
"taxonomy",
"taxonomies"
],
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"autoprefixer": "^10.4.7",
"postcss": "^8.4.14",
"postcss-cli": "^9.1.0",
"tailwindcss": "^3.3.5",
"@wordpress/env": "^9.1.0",
"@wordpress/scripts": "^27.0.0"
},
"scripts": {
"dev": "npx postcss assets/css/general.css -o assets/css/public/general.css --watch",
"build": "NODE_ENV=production npx postcss assets/css/general.css -o assets/css/public/general.css",
"start-env": "wp-env start",
"stop-env": "wp-env stop",
"composer-install": "wp-env run cli --env-cwd=wp-content/plugins/$(basename $(pwd)) composer install",
"test-php": "wp-env run tests-cli phpunit --env-cwd=wp-content/plugins/$(basename $(pwd)) --verbose",
"wp-env": "wp-env"
}
}