-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"name": "funky-headline",
"version": "0.0.1",
"scripts": {
"wp-env": "wp-env",
"start": "npm run wp-env start",
"stop": "npm run wp-env stop",
"destroy": "npm run wp-env destroy",
"cli": "npm run wp-env run cli",
"poststart": "npm run cli wp rewrite structure '/%postname%/' && npm run assets:start",
"prepare": "husky",
"assets:start": "wp-scripts start",
"assets:build": "wp-scripts build",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx"
},
"keywords": [
"Gutenberg",
"Gutenberg Block",
"Headline"
],
"author": "Marko Nikolaš [email protected]",
"license": "GPL-2.0-only",
"lint-staged": {
"*.js": [
"wp-scripts lint-js",
"wp-scripts format"
],
"*.scss": "npx stylelint --fix"
},
"description": "A funky headline block with an eye-catching look :)",
"devDependencies": {
"@wordpress/block-editor": "^14.2.0",
"@wordpress/blocks": "^13.7.0",
"@wordpress/env": "^10.7.0",
"@wordpress/eslint-plugin": "^21.0.0",
"@wordpress/i18n": "^5.7.0",
"@wordpress/scripts": "^26.12.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10"
},
"dependencies": {
"prop-types": "^15.8.1"
}
}