forked from rankmath/seo-by-rank-math
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (101 loc) · 4.8 KB
/
package.json
File metadata and controls
102 lines (101 loc) · 4.8 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "rank-math",
"version": "1.1.0",
"description": "Rank Math is the Swiss Army knife of SEO tools for WordPress. It gives you complete control over your entire website’s on-page SEO.",
"author": "Rank Math",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/rankmath/seo-by-rank-math.git"
},
"plugin": {
"glotpress": "http://translate.wordpress.org",
"textdomain": "rank-math"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.23.2",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-proposal-function-sent": "^7.22.5",
"@babel/plugin-proposal-numeric-separator": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.2",
"@babel/plugin-proposal-throw-expressions": "^7.22.5",
"@babel/plugin-transform-react-jsx": "^7.22.5",
"@babel/preset-env": "^7.23.2",
"@babel/runtime": "^7.23.2",
"@wordpress/eslint-plugin": "^13.10.4",
"@wordpress/icons": "^9.34.0",
"ajv": "^8.12.0",
"babel-loader": "^9.1.3",
"classnames": "^2.3.2",
"css-loader": "^6.8.1",
"eslint": "^8.50.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-checktextdomain": "^2.3.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"node-sass": "^8.0.0",
"npm": "^9.8.0",
"prettier": "^2.8.8",
"react-content-loader": "^6.2.0",
"react-router-dom": "^6.17.0",
"sass": "^1.69.4",
"sass-loader": "^13.3.2",
"sentiment": "^5.0.2",
"style-loader": "^3.3.3",
"svg-react-loader": "^0.4.6",
"terser-webpack-plugin": "^5.3.8",
"typescript": "^4.8.4",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@automattic/interpolate-components": "^1.2.1",
"@woocommerce/components": "^11.1.0",
"@woocommerce/settings": "^1.0.0",
"@wordpress/annotations": "^2.43.1",
"@wordpress/keyboard-shortcuts": "^4.20.1",
"@wordpress/keycodes": "^3.43.0",
"@yaireo/tagify": "^4.17.8",
"lodash": "^4.17.21",
"recharts": "^2.9.0"
},
"scripts": {
"build": "webpack --mode=production --progress",
"dev": "webpack --mode=development --watch",
"deva": "webpack --mode=development --env what=analytics --watch",
"devf": "webpack --mode=development --env what=front --watch",
"devs": "webpack --mode=development --env what=schema --watch",
"devdivi": "webpack --mode=development --env what=divi --progress --watch",
"devca": "webpack --mode=development --env what=content-ai --watch",
"devcab": "webpack --mode=development --env what=content-ai-block --watch",
"a": "webpack --mode=production --env what=analytics --progress",
"f": "webpack --mode=production --env what=front --progress",
"s": "webpack --mode=production --env what=schema --progress",
"i": "webpack --mode=production --env what=instant-indexing --progress",
"m": "webpack --mode=production --env what=404-monitor --progress",
"redirection": "webpack --mode=production --env what=redirections --progress",
"woocommerce": "webpack --mode=production --env what=woocommerce --progress",
"acf": "webpack --mode=production --env what=acf --progress",
"role-manager": "webpack --mode=production --env what=role-manager --progress",
"devrm": "webpack --mode=development --env what=role-manager --watch",
"sa": "webpack --mode=production --env what=seo-analysis --progress",
"status": "webpack --mode=production --env what=status --progress",
"version-control": "webpack --mode=production --env what=version-control --progress",
"divi": "webpack --mode=production --env what=divi --progress",
"elementor": "webpack --mode=production --env what=elementor --progress",
"ca": "webpack --mode=production --env what=content-ai --progress",
"cab": "webpack --mode=production --env what=content-ai-block --progress",
"blocks": "webpack --mode=production --env what=toc --progress",
"dist": "npm run build && npm run a && npm run f && npm run s && npm run blocks && npm run m && npm run ca && npm run cab && npm run redirection && npm run acf && npm run woocommerce && npm run role-manager && npm run sa && npm run status && npm run version-control && npm run divi && npm run elementor && gulp frontCSS && gulp adminCSS && gulp modulesCSS && wp i18n make-pot . languages/rank-math.pot --exclude='src/*' --headers='{\"Language-Team\": \"Rank Math <support@rankmath.com>\", \"Last-Translator\": \"Rank Math <support@rankmath.com>\"}' && php remove_file_references.php",
"pot": "wp i18n make-pot . languages/rank-math.pot --exclude='src/*' --headers='{\"Language-Team\": \"Rank Math <support@rankmath.com>\", \"Last-Translator\": \"Rank Math <support@rankmath.com>\"}' && php remove_file_references.php",
"gulp:watch": "gulp watch"
},
"browserslist": [
"last 2 versions"
]
}