This repository has been archived by the owner on Mar 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2 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
{
"version": "0.0.5",
"title": "WP Plugin Boilerplate",
"name": "lhpbp",
"slug": "lhpbp",
"author": "Luehrsen // Heinrich",
"authorUrl": "https://www.luehrsen-heinrich.de",
"description": "This is the plugin boilerplate for WordPress by Luehrsen // Heinrich.",
"private": true,
"license": "GPLv2",
"minWpReq": "5.0",
"testedWp": "5.8",
"devDependencies": {
"@babel/core": "^7.15.8",
"@lodder/grunt-postcss": "^3.1.0",
"@wordpress/babel-preset-default": "^6.3.3",
"@wordpress/browserslist-config": "^4.1.0",
"@wordpress/dependency-extraction-webpack-plugin": "^3.2.1",
"@wordpress/env": "^4.1.2",
"@wordpress/eslint-plugin": "^9.2.0",
"@wordpress/prettier-config": "^1.1.1",
"autoprefixer": "^10.3.7",
"babel-loader": "^8.2.2",
"babel-plugin-lodash": "^3.3.4",
"browserslist": "^4.17.4",
"cssnano": "^5.0.8",
"env-cmd": "^10.1.0",
"eslint": "^7.32.0",
"grunt": "^1.4.1",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-compress": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-eslint": "^23.0.0",
"grunt-newer": "^1.3.0",
"grunt-shell": "^3.0.1",
"grunt-stylelint": "^0.16.0",
"grunt-webpack": "^4.0.3",
"jit-grunt": "^0.10.0",
"postcss": "^8.3.9",
"postcss-base64": "^0.7.1",
"postcss-import": "^14.0.2",
"postcss-preset-env": "^6.7.0",
"prettier": "2.4.1",
"stylelint": "^13.13.1",
"stylelint-config-wordpress": "^17.0.0",
"terser-webpack-plugin": "^5.2.4",
"time-grunt": "^2.0.0",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.1"
},
"scripts": {
"setup": "npm run start",
"dev": "npm run start && grunt watch",
"remove": "wp-env destroy",
"prestart": "npm install && composer install && npx grunt deploy",
"start": "npx wp-env start",
"stop": "npx wp-env stop",
"clean": "npx wp-env clean all"
},
"browserslist": [
"extends @wordpress/browserslist-config"
],
"prettier": "@wordpress/prettier-config"
}