-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.65 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
{
"name": "pulsar-blocks",
"scripts": {
"watch": "wp-scripts start --output-path=dist --webpack-copy-php",
"hot": "wp-scripts start --hot --output-path=dist --webpack-copy-php",
"production": "wp-scripts build --output-path=dist --webpack-copy-php",
"lint": "npm run lint:css && npm run lint:js && npm run lint:php",
"lint:css": "stylelint './src/**/*.scss'",
"lint:js": "eslint './src/**/*.js'",
"lint:php": "./vendor/bin/phpcs .",
"format:css": "stylelint --fix './src/**/*.scss'",
"format:js": "eslint --fix './src/**/*.js'",
"format:php": "./vendor/bin/phpcbf .",
"i18n": "npm run i18n:textdomain && npm run i18n:pot",
"i18n:textdomain": "npx node-wp-i18n addtextdomain --exclude=vendor,node_modules",
"i18n:pot": "npx node-wp-i18n makepot . languages/pulsar-blocks.pot",
"plugin-zip": "wp-scripts plugin-zip"
},
"devDependencies": {
"@10up/block-components": "^1.19.2",
"@eighteen73/eslint-config-wordpress": "^1.0.3",
"@eighteen73/stylelint-config-wordpress": "^1.1.2",
"@wordpress/browserslist-config": "^5.25.0",
"@wordpress/prettier-config": "^2.25.0",
"@wordpress/scripts": "^26.18.0",
"postcss-preset-env": "^9.0.0",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"@splidejs/react-splide": "^0.7.12",
"@splidejs/splide": "^4.1.4",
"@wordpress/icons": "^9.33.0",
"classnames": "^2.3.2",
"embla-carousel": "^8.5.1",
"embla-carousel-auto-scroll": "^8.5.1",
"embla-carousel-autoplay": "^8.5.1",
"embla-carousel-class-names": "^8.5.1",
"embla-carousel-fade": "^8.5.1",
"embla-carousel-react": "^8.5.1",
"lightgallery": "^2.8.2"
},
"files": [
"assets",
"dist",
"autoload.php",
"pulsar-blocks.php"
]
}