-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 1.51 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
{
"name": "plugin-boilerplate-psr",
"version": "1.0.0",
"description": "WordPress Plugin Boilerplate",
"main": "gulpfile.babel.js",
"repository": {
"type": "git",
"url": "[email protected]:WPSwitzerland/plugin-boilerplate-psr.git"
},
"scripts": {
"start": "gulp"
},
"author": "Say Hello GmbH",
"license": "ISC",
"bugs": {
"url": "https://github.com/WPSwitzerland/plugin-boilerplate-psr/issues"
},
"homepage": "https://github.com/WPSwitzerland/plugin-boilerplate-psr/",
"dependencies": {
"@babel/core": "^7.22.8",
"@babel/preset-env": "^7.22.7",
"@babel/preset-react": "^7.22.5",
"@babel/register": "^7.22.5",
"@sayhellogmbh/gulp-sass-import-json": "^1.1.1",
"@wordpress/dependency-extraction-webpack-plugin": "^4.20.0",
"babel-loader": "^9.1.3",
"chokidar": "^3.5.3",
"css-loader": "^6.8.1",
"fs": "^0.0.1-security",
"fsevents": "^2.3.2",
"glob": "^8.1.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-editor-styles": "^1.0.1",
"gulp-filter": "^7.0.0",
"gulp-livereload": "^4.0.2",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2",
"path": "^0.12.7",
"react-icons": "^4.10.1",
"sass": "^1.64.0",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"webpack": "^5.88.1",
"webpack-stream": "^7.0.0"
},
"babel": {
"presets": [
"@babel/env",
"@babel/preset-react"
]
},
"browserslist": [
"> 1%",
"not IE 11"
],
"engines": {
"node": "v18.14.2",
"npm": "9.7.2"
}
}