-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1022 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 1022 Bytes
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
{
"name": "brads-boilerplate-theme",
"version": "1.0.0",
"description": "Tailwind CSS with React WordPress Boilerplate Theme",
"main": "index.js",
"scripts": {
"preview": "npm-run-all --parallel sync wpstart tailwindwatch",
"sync": "browser-sync start -p 'myexample.local' --files '**/*.php' 'build/*.js' 'build/*.css'",
"buildwp": "wp-scripts build",
"build": "npm-run-all --sequential buildwp tailwindbuild",
"wpstart": "wp-scripts start",
"start": "npm-run-all --parallel wpstart tailwindwatch",
"tailwindbuild": "tailwindcss -i ./src/index.css -o ./build/index.css --minify",
"tailwindwatch": "tailwindcss -i ./src/index.css -o ./build/index.css --watch --minify",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"@wordpress/scripts": "^26.5.0",
"browser-sync": "^2.29.3",
"npm-run-all": "^4.1.5",
"tailwindcss": "^3.3.2"
}
}