-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.29 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
{
"name": "animated-block",
"version": "0.1.0",
"description": "Animated block",
"author": "Erik",
"license": "GPL-2.0-or-later",
"main": "build/index.js",
"scripts": {
"env": "wp-env start",
"start": "wp-scripts start",
"build": "wp-scripts build",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js --fix",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip",
"make-pot": "npx @wp-blocks/make-pot"
},
"devDependencies": {
"@wordpress/block-editor": "^12.25.0",
"@wordpress/blocks": "^12.34.0",
"@wordpress/components": "^27.5.0",
"@wordpress/element": "^5.34.0",
"@wordpress/env": "^9.9.0",
"@wordpress/i18n": "^4.57.0",
"@wordpress/icons": "^9.49.0",
"@wordpress/scripts": "^27.8.0"
},
"dependencies": {
"animate.css": "^4.1.1",
"classnames": "^2.5.1"
},
"browserslist": [
"extends @wordpress/browserslist-config"
],
"eslintConfig": {
"extends": [
"plugin:@wordpress/eslint-plugin/recommended",
"plugin:jsdoc/recommended"
],
"env": {
"browser": true,
"es6": true
},
"parser": "@typescript-eslint/parser"
},
"stylelint": {
"extends": [
"@wordpress/stylelint-config",
"@wordpress/stylelint-config/scss"
]
},
"prettier": "@wordpress/prettier-config"
}