-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.11 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
{
"name": "business-directory-plugin",
"version": "1.0.0",
"description": "",
"main": "",
"resolutions": {
"braces": "^3.0.3",
"shelljs": "^0.8.5"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@svgr/webpack": "^8.1.0",
"@wordpress/eslint-plugin": "^13.10.0",
"@wordpress/prettier-config": "^2.9.0",
"@wordpress/stylelint-config": "^23.1.0",
"babel-loader": "^9.2.1",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"eslint": "^8.33.0",
"eslint-plugin-jsdoc": "^39.8.0",
"eslint-plugin-react-hooks": "^4.6.0",
"grunt": "^1.6.1",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-compress": "^2.0.0",
"grunt-contrib-less": "^3.0.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-contrib-watch": "^1.1.0",
"grunt-potomo": "^3.5.0",
"grunt-text-replace": "^0.4.0",
"grunt-wp-i18n": "^1.0.3",
"less-plugin-autoprefix": "^2.0.0",
"npm-force-resolutions": "^0.0.10",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"postcss-less": "^6.0.0",
"prettier": "npm:wp-prettier@^2.6.2",
"style-loader": "^4.0.0",
"stylelint": "^16.9.0",
"stylelint-config-recommended-less": "^3.0.1",
"stylelint-less": "^3.0.1",
"stylelint-order": "^6.0.1",
"underscore": "^1.13.6",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"scripts": {
"preinstall": "npx npm-force-resolutions",
"format": "npm-run-all --parallel format:*",
"format:css": "stylelint \"**/*.less\" --fix --custom-syntax postcss-less",
"format:js": "eslint --fix .",
"format:php": "composer phpcbf",
"lint": "npm-run-all --parallel lint:*",
"lint:css": "stylelint \"**/*.less\" --custom-syntax postcss-less",
"lint:js": "eslint .",
"lint:php": "composer phpcs",
"watch": "grunt watch",
"build": "cross-env NODE_ENV=production webpack --progress && grunt uglify:plugin",
"dev": "cross-env NODE_ENV=default webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Strategy11/business-directory-plugin.git"
},
"homepage": "https://businessdirectoryplugin.com/",
"dependencies": {
"@wordpress/dom-ready": "^4.11.0"
}
}