-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.95 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
{
"name": "hanmoto-helper",
"main": "gulpfile.js",
"scripts": {
"start": "wp-env start",
"update": "wp-env start --update",
"stop": "wp-env stop",
"cli": "wp-env run cli wp",
"cli:test": "wp-env run tests-cli wp",
"package": "npm run build:css && npm run gulp",
"watch": "npm-watch",
"gulp": "gulp",
"gulp:task": "gulp --tasks",
"build:css": "sass ./assets/scss/:./dist/css/ --style=compressed && postcss ./dist/css/*.css --use autoprefixer --replace",
"build:js": "npm run gulp jsx",
"dump": "npm run gulp dump",
"fix": "npm run fix:js && npm run fix:css",
"fix:js": "eslint --fix -c .eslintrc assets/js",
"fix:css": "stylelint --fix assets/scss",
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "wp-scripts lint-style ./assets/scss/**/*.scss",
"lint:js": "wp-scripts lint-js ./assets/js"
},
"engines": {
"node": ">= 16.0.0"
},
"author": "Hametuha INC.",
"license": "LGPL-3.0-or-later",
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-transform-react-jsx": "^7.23.4",
"@babel/preset-env": "^7.23.8",
"@kunoichi/grab-deps": "^1.3.1",
"@wordpress/env": "^9.0",
"@wordpress/eslint-plugin": "^17.5.0",
"@wordpress/scripts": "^26.19.0",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"gulp": "^4.0.2",
"gulp-load-plugins": "^2.0",
"gulp-notify": "^4.0.0",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^2.0.0",
"npm-watch": "^0.11.0",
"postcss": "^8.4.33",
"postcss-cli": "^11.0.0",
"sass": "^1.69.7",
"stylelint-config-wordpress": "^17.0.0",
"vinyl-named": "^1.1.0",
"webpack": "^5.89",
"webpack-stream": "^7.0"
},
"watch": {
"build:js": {
"extensions": "js,scss,json",
"patterns": [
"assets/js"
]
},
"build:css": {
"extensions": "scss",
"patterns": [
"assets/scss"
]
},
"dump": {
"extensions": "js,css",
"patterns": [
"dist/js",
"dist/css"
]
}
},
"volta": {
"node": "16.20.2"
}
}