-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
70 lines (70 loc) · 1.85 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
{
"name": "blank-theme",
"description": "A starter-kit for WordPress themes",
"version": "1.0.0",
"author": "Olivier Guilleux",
"authorURI": "https://www.olivier-guilleux.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/oguilleux/webpack-gulp-wordpress-starter-theme.git"
},
"keywords": [
"wordpress",
"theme",
"gulp"
],
"scripts": {
"start": "gulp",
"build": "gulp build",
"postinstall": "gulp build && echo \"THEME INSTALLED, GOOD TO GO !\""
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"devDependencies": {
"@babel/core": "7.25.2",
"@babel/eslint-parser": "7.25.1",
"@babel/plugin-transform-runtime": "7.24.7",
"@babel/preset-env": "7.25.3",
"ansi-colors": "4.1.3",
"autoprefixer": "10.4.19",
"babel-loader": "9.1.3",
"browser-sync": "3.0.2",
"cssnano": "7.0.4",
"del": "6.1.1",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-webpack-plugin": "4.2.0",
"fancy-log": "2.0.0",
"gulp": "5.0.0",
"gulp-filter": "7.0.0",
"gulp-notify": "4.0.0",
"gulp-plumber": "1.2.1",
"gulp-postcss": "10.0.0",
"gulp-sass": "5.1.0",
"gulp-sourcemaps": "3.0.0",
"gulp-svg-sprite": "2.0.3",
"gulp-svgmin": "4.1.0",
"lodash": "4.17.21",
"map-stream": "0.0.7",
"merge-stream": "2.0.0",
"node-notifier": "10.0.1",
"postcss": "8.4.40",
"sass": "1.77.8",
"terser-webpack-plugin": "5.3.10",
"vinyl-named": "1.1.0",
"webpack": "5.93.0",
"webpack-stream": "7.0.0"
},
"dependencies": {
"bootstrap": "5.3.3"
}
}