-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
72 lines (72 loc) · 2.51 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "wds_acf_blocks",
"version": "2.0.0",
"description": "A set of custom Gutenberg blocks built with Advanced Custom Fields Pro.",
"author": "WebDevStudios",
"license": "GPL-2.0-or-later",
"keywords": [
"plugin"
],
"homepage": "https://github.com/WebDevStudios/wds-acf-blocks#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/WebDevStudios/wds-acf-blocks.git"
},
"bugs": {
"url": "https://github.com/WebDevStudios/wds-acf-blocks/issues"
},
"engines": {
"node": ">=14",
"npm": ">=7"
},
"main": "src/index.js",
"dependencies": {
"request": "^2.88.2",
"swiper": "^8.4.2"
},
"devDependencies": {
"@wordpress/eslint-plugin": "12.8.0",
"@wordpress/prettier-config": "^1.4.0",
"@wordpress/scripts": "^23.3.0",
"autoprefixer": "^10.4.8",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.0.0",
"cssnano": "^5.1.4",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^2.6.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.10",
"postcss-cli": "^9.1.0",
"prettier": "npm:wp-prettier@^2.6.2",
"stylelint-config-prettier": "^9.0.3",
"stylelint-webpack-plugin": "^3.3.0",
"svg-transform-loader": "^2.0.13",
"tailwindcss": "^3.2.1"
},
"scripts": {
"build:pot": "composer run-script pot",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"format": "run-p format:*",
"format:css": "npx prettier '**/*.scss' --write && npm run lint:css -- --fix",
"format:js": "wp-scripts format && npm run lint:js -- --fix",
"format:md": "npx markdownlint-cli . --fix",
"format:php": "composer run-script format",
"lint": "run-p lint:*",
"lint:css": "wp-scripts lint-style '**/*.scss'",
"lint:js": "wp-scripts lint-js",
"lint:md": "wp-scripts lint-md-docs",
"lint:php": "composer run-script lint",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages-update": "wp-scripts packages-update",
"postinstall": "npm run build",
"blocks": "cross-env NODE_ENV=production wp-scripts build --webpack-src-dir=src/blocks --webpack-copy-php",
"global": "cross-env NODE_ENV=production wp-scripts build --config webpack.global.js",
"build": "npm-run-all blocks global",
"blocks:watch": "cross-env NODE_ENV=production wp-scripts start --webpack-src-dir=src/blocks --webpack-copy-php",
"global:watch": "cross-env NODE_ENV=production wp-scripts start --config webpack.global.js",
"start": "npm-run-all --parallel blocks:watch global:watch"
}
}