-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.25 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
{
"name": "tab-content-block",
"version": "1.0.0",
"description": "Display responsive, accessible tabs featuring dynamic content.",
"main": "index.js",
"scripts": {
"lint": "eslint src",
"start": "webpack --mode=development --watch",
"sync": "browser-sync start -p 'http://localhost/' --files '**/*.php' 'dist/*.js' 'dist/*.css'",
"preview": "npm-run-all --parallel sync start",
"i18n-pot": "wp i18n make-pot . languages/tab-content.pot --exclude=\"src\" && cp ./languages/tab-content.pot ./languages/tab-content-en_US.po",
"i18n-json": "wp i18n make-json languages/ --no-purge",
"i18n-mo": "wp i18n make-mo languages/",
"i18n": "npm run i18n-pot && npm run i18n-json && npm run i18n-mo",
"build": "gulp clean && npm run lint && webpack --mode=production && gulp bundle",
"myBuild": "npm run lint && webpack --mode=production && npm run i18n && gulp bundle"
},
"author": "Wasek Bellah",
"license": "ISC",
"dependencies": {
"immer": "^10.0.2"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@wordpress/blob": "^3.32.0",
"@wordpress/block-editor": "^12.0.0",
"@wordpress/blocks": "^12.9.0",
"@wordpress/components": "^23.9.0",
"@wordpress/compose": "^6.9.0",
"@wordpress/data": "^9.2.0",
"@wordpress/element": "^5.9.0",
"@wordpress/html-entities": "^3.32.0",
"@wordpress/i18n": "^4.32.0",
"@wordpress/rich-text": "^6.9.0",
"@wordpress/server-side-render": "^4.9.0",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.2",
"browser-sync": "^2.29.1",
"browserslist": "^4.21.5",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^5.0.0",
"del": "^7.0.0",
"eslint": "^8.40.0",
"eslint-config-node": "^4.1.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^4.0.1",
"file-loader": "^6.2.0",
"gulp": "^3.9.1",
"gulp-zip": "^4.2.0",
"mini-css-extract-plugin": "^2.7.5",
"node-sass": "^8.0.0",
"npm-run-all": "^4.1.5",
"postcss-loader": "^7.3.0",
"sass-loader": "^13.2.2",
"webpack": "^5.82.0",
"webpack-cli": "^5.1.1"
},
"browserslist": [
"> 1% or last 5 versions"
]
}