-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
68 lines (68 loc) · 1.96 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
{
"name": "wds-blocks",
"version": "2.2.3",
"private": true,
"description": "A block starter for WebDevStudios projects.",
"author": "WebDevStudios",
"license": "GPL-2.0-or-later",
"keywords": [
"Gutenberg"
],
"homepage": "https://github.com/WebDevStudios/WDS-Blocks#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/WebDevStudios/WDS-Blocks"
},
"bugs": {
"url": "https://github.com/WebDevStudios/WDS-Blocks/issues"
},
"engines": {
"node": ">=14",
"npm": ">=7"
},
"main": "src/index.js",
"dependencies": {
"@glidejs/glide": "^3.5.2",
"@wordpress/block-editor": "^8.1.0",
"@wordpress/blocks": "^11.2.0",
"@wordpress/components": "^19.3.0",
"@wordpress/compose": "^5.1.0",
"@wordpress/data": "^6.2.0",
"@wordpress/element": "^4.1.0",
"@wordpress/hooks": "^3.3.0",
"@wordpress/i18n": "^4.3.0",
"classnames": "^2.3.1",
"glob": "^7.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@arkweid/lefthook": "^0.7.7",
"@wordpress/prettier-config": "^1.1.1",
"@wordpress/scripts": "^18.0.1",
"eslint": "^7.32.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"ignore-emit-webpack-plugin": "^2.0.6",
"npm-run-all": "^4.1.5",
"prettier": "npm:wp-prettier@^2.2.1-beta-1",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-wordpress": "^17.0.0"
},
"scripts": {
"build": "wp-scripts build",
"dev": "wp-scripts start",
"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",
"start": "wp-scripts start"
}
}