-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.39 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.39 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
{
"name": "elementify",
"version": "2.0.0",
"description": "Blank Theme Packages",
"author": "rabindratharu",
"license": "GPL-2.0-or-later",
"private": true,
"keywords": [
"rabindratharu",
"wp-theme",
"elementify"
],
"homepage": "https://github.com/rabindratharu/blank-theme#readme",
"repository": {
"type": "git",
"url": "https://github.com/rabindratharu/blank-theme.git"
},
"bugs": {
"url": "https://github.com/rabindratharu/blank-theme/issues"
},
"devDependencies": {
"@wordpress/scripts": "^30.8.1",
"babel-loader": "^10.0.0",
"copy-webpack-plugin": "^13.0.0",
"cross-env": "^7.0.3",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-webpack-plugin": "^4.2.0",
"jest-silent-reporter": "^0.6.0",
"lint-staged": "^15.4.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.49",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.1.3",
"stylelint-webpack-plugin": "^5.0.1",
"webpack-remove-empty-scripts": "^1.0.4",
"mini-css-extract-plugin": "^2.9.2",
"rtlcss-webpack-plugin": "^4.0.7",
"autoprefixer": "^10.4.20",
"tailwindcss": "^3.4.15",
"grunt-checktextdomain": "^1.0.1",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-compress": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-wp-i18n": "^1.0.3",
"grunt-wp-readme-to-markdown": "^2.1.0",
"clean-webpack-plugin": "^4.0.0"
},
"scripts": {
"build:dev": "cross-env NODE_ENV=development npm-run-all 'build:!(dev|prod)'",
"build:prod": "cross-env NODE_ENV=production npm-run-all 'build:!(dev|prod)'",
"build:js": "npm run clean && wp-scripts build --experimental-modules",
"start": "npm run clean && wp-scripts start --experimental-modules",
"clean": "rm -rf assets/build/*",
"lint:all": "npm-run-all --parallel lint:*",
"lint:css": "wp-scripts lint-style ./assets/src",
"lint:css:fix": "npm run lint:css -- --fix ./assets/src",
"lint:js": "wp-scripts lint-js ./assets/src",
"lint:js:fix": "npm run lint:js -- --fix ./assets/src",
"lint:js:report": "npm run lint:js -- --output-file lint-js-report.json --format json .",
"lint:php": "php vendor/bin/phpcs",
"lint:php:fix": "node ./bin/phpcbf.js",
"lint:package-json": "wp-scripts lint-pkg-json --ignorePath .gitignore",
"lint:staged": "lint-staged",
"build:pot": "grunt i18n",
"precommit": "npm-run-all lint:* pot",
"wp-env": "wp-env"
},
"browserslist": [
"last 3 versions",
"> 1%"
]
}