-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.23 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.23 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "grayscale-wordpress-scaffolding",
"version": "3.4.0",
"author": "K Chan <k.chan@grayscale.com.hk> (https://grayscale.com.hk)",
"license": "GPL-3.0",
"repository": "github:grayscaleltd/grayscale-wordpress-scaffolding",
"homepage": "https://grayscale.com.hk",
"private": true,
"type": "module",
"engines": {
"node": ">=18.18.0"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/eslint-parser": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/preset-react": "^7.28.5",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@inquirer/prompts": "^7.9.0",
"@semantic-release/git": "^10.0.1",
"@wordpress/eslint-plugin": "^22.20.0",
"autoprefixer": "^10.4.21",
"babel-loader": "^10.0.0",
"browser-sync": "^3.0.4",
"chalk": "^5.6.2",
"classnames": "^2.5.1",
"cssnano": "^7.1.2",
"del": "^8.0.1",
"download": "^8.0.0",
"eslint": "^8.57.1",
"eslint-config-google": "^0.14.0",
"glob": "^11.0.3",
"gulp": "^5.0.1",
"gulp-changed": "^5.0.4",
"gulp-if": "^3.0.0",
"gulp-notify": "^5.0.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^10.0.0",
"gulp-rename": "^2.1.0",
"gulp-sass": "^6.0.1",
"gulp-sass-variables": "^1.2.0",
"gulp-sharp-optimize-images": "^4.0.3",
"gulp-sourcemaps": "^3.0.0",
"gulp-string-replace": "^1.1.2",
"gulp-touch-cmd": "0.0.1",
"husky": "^9.1.7",
"node-fetch": "^3.3.2",
"normalize.css": "^8.0.1",
"ora": "^9.0.0",
"postcss": "^8.5.6",
"postcss-calc": "^10.1.1",
"sass-embedded": "^1.93.3",
"slug": "^11.0.1",
"stylelint": "^16.25.0",
"stylelint-config-clean-order": "^7.0.0",
"stylelint-config-sass-guidelines": "^12.1.0",
"stylelint-config-standard-scss": "^16.0.0",
"through2": "^4.0.2",
"webpack": "^5.102.1",
"yargs": "^18.0.0"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"browserslist": [
"last 2 versions",
"> 0.25% and not dead"
],
"scripts": {
"setup": "npm install && gulp setup && gulp build && composer install && npm audit fix",
"prepare": "husky",
"serve": "gulp watch",
"build": "gulp build --production"
}
}