-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.31 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.31 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
{
"name": "style-manager",
"description": "Style Manager is an auto-magical system to style your WordPress site.",
"private": false,
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/pixelgrade/style-manager.git"
},
"license": "GPL-2.0+",
"bugs": {
"url": "https://github.com/pixelgrade/style-manager/issues"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"gulp": "node ./node_modules/gulp/bin/gulp.js",
"dev": "cross-env webpack --mode=development --watch && gulp dev",
"compile:production": "cross-env NODE_ENV=production webpack --mode=production && gulp compile:styles",
"zip": "cross-env NODE_ENV=production webpack --mode=production && gulp compile:styles && composer run zip",
"preinstall": "cd ./node-tasks/ && npm install && node ./lock_node_version.js",
"webpack:analyzer": "webpack --profile --json > dist/js/stats.json && ./node_modules/.bin/webpack-bundle-analyzer dist/js/stats.json"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@wordpress/browserslist-config": "^6.40.0",
"babel-loader": "^10.0.0",
"browserslist": "^4.20.2",
"chroma-js": "^2.1.2",
"classnames": "^2.3.1",
"command-exists": "^1.2.9",
"css-loader": "^6.5.1",
"del": "^6.0.0",
"fancy-log": "^2.0.0",
"gulp": "^5.0.1",
"gulp-load-plugins": "^2.0.8",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.3",
"gulp-rtlcss": "^2.0.0",
"hsluv": "^0.1.0",
"jquery": "^3.6.0",
"lodash": "^4.17.21",
"merge-stream": "^2.0.0",
"mini-css-extract-plugin": "^2.10.0",
"react": "^17.0.2",
"sass": "^1.97.3",
"sass-loader": "^16.0.7",
"svg-sprite-loader": "^6.0.11",
"terser": "^5.46.0",
"terser-webpack-plugin": "^5.3.16",
"webpack": "^5.105.3",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"react-color": "^2.19.3",
"react-colorful": "^5.5.1",
"react-dom": "^17.0.2",
"use-debounce": "^7.0.1"
}
}