-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.28 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
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
{
"name": "wordpress-plugin-boilerplate",
"version": "1.0.0",
"license": "GPL-3.0",
"keywords": [
"wppb",
"wordpress",
"wordpress plugin",
"wordpress plugin boilerplate"
],
"description": "WordPress plugin boilerplate",
"repository": {
"type": "git",
"url": "https://github.com/code-soup/wordpress-plugin-boilerplate.git"
},
"bugs": {
"url": "https://github.com/code-soup/wordpress-plugin-boilerplate/issues"
},
"engines": {
"node": "^20.0.0"
},
"authors": [
{
"homepage": "https://www.bobz.co",
"name": "Vlado Bosnjak",
"email": "[email protected]"
},
{
"homepage": "https://www.codesoup.co",
"name": "Code Soup",
"email": "[email protected]"
}
],
"browserslist": [
"> 1%",
"last 3 versions",
"android 4",
"safari 10",
"not ie <= 8"
],
"scripts": {
"dev": "webpack serve --hot --mode development --color --config src/config/config.webpack.js",
"build": "webpack --mode development --progress --config src/config/config.webpack.js",
"build:prod": "webpack --mode production --progress --config src/config/config.webpack.js",
"lint": "npm run -s lint:scripts && npm run -s lint:styles",
"lint:scripts": "eslint src/scripts src/webpack",
"lint:styles": "stylelint \"src/styles/**/*.{css,sass,scss}\"",
"reinit": "rimraf dist && rimraf node_modules && yarn",
"clean": "rimraf dist"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@wordpress/babel-preset-default": "^8.5.0",
"babel-loader": "^9.1.3",
"breakpoint-sass": "^3.0.0",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^7.1.2",
"cssnano": "^7.0.5",
"dotenv": "^16.4.5",
"eslint": "^9.9.0",
"eslint-plugin-import": "^2.29.1",
"eslint-webpack-plugin": "^4.2.0",
"import-glob": "^1.5.0",
"jquery": "^3.7.1",
"mini-css-extract-plugin": "^2.9.0",
"postcss": "^8.4.41",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.0.1",
"resolve-url-loader": "^5.0.0",
"rimraf": "^6.0.1",
"sass": "^1.77.8",
"sass-loader": "^16.0.0",
"style-loader": "^4.0.0",
"stylelint": "^16.8.1",
"stylelint-config-property-sort-order-smacss": "^10.0.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-order": "^6.0.4",
"stylelint-webpack-plugin": "^5.0.1",
"svg-spritemap-webpack-plugin": "^4.5.1",
"webpack": "^5.93.0",
"webpack-assets-manifest": "^5.2.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^6.0.1",
"yargs": "~17.7.2",
"yarn-audit-fix": "^10.0.8"
},
"dependencies": {
"@wordpress/api-fetch": "^7.5.0",
"@wordpress/url": "^4.5.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"packageManager": "[email protected]+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}