-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.68 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
{
"name": "vh-starter-theme",
"version": "0.0.1",
"description": "Starter theme focused on development using gutenberg blocks.",
"author": "Viktor Shershnyov",
"license": "GPL-2.0-or-later",
"main": "build/index.js",
"scripts": {
"start": "concurrently \"npm run start:blocks\" \"npm run start:css-frontend\" \"npm run start:css-editor\" \"npm run start:js\"",
"start:js": "webpack --entry ./src/js/index.js --watch --output-path=./dist/js/ --config webpack.config.theme.js",
"start:blocks": "wp-scripts start --webpack-src-dir=blocks/src/ --output-path=blocks/build/ --webpack-copy-php",
"start:css": "concurrently \"npm run start:css-frontend\" \"npm run start:css-editor\"",
"start:css-frontend": "postcss ./src/css/styles.css -m -o ./dist/css/styles.css -w --verbose",
"start:css-editor": "postcss ./src/css/styles.editor.css -o ./dist/css/editor.css -w",
"build:blocks": "wp-scripts build --webpack-src-dir=blocks/src/ --output-path=blocks/build/ --webpack-copy-php",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@wordpress/scripts": "^26.12.0",
"autoprefixer": "^10.4.16",
"concurrently": "^9.1.0",
"cssnano": "^6.0.1",
"postcss": "^8.4.30",
"postcss-cli": "^10.1.0",
"postcss-import": "^15.1.0",
"tailwindcss": "^3.3.3",
"webpack-cli": "^5.1.4"
}
}