-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
85 lines (85 loc) · 2.15 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
79
80
81
82
83
84
85
{
"name": "advanced-ads-genesis",
"title": "Advanced Ads – Genesis",
"description": "Place ads on various positions within Genesis themes",
"homepage": "https://wpadvancedads.com/",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/advanced-ads/advanced-ads-genesis.git"
},
"author": "Advanced Ads",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/advanced-ads/advanced-ads-genesis/issues"
},
"scripts": {
"prepare": "husky install",
"dev": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"build": "mix --production",
"lint": "lint-staged",
"lint:css": "stylelint \"**/*.css\" --cache",
"lint:scss": "stylelint \"**/*.scss\" --cache",
"lint:js": "eslint . --cache",
"lint:p": "prettier -c .",
"lint:pw": "prettier -w .",
"lint:php": "vendor/bin/phpcs",
"translations": "node ./tools/wp-glotpress.js"
},
"devDependencies": {
"@wordpress/eslint-plugin": "^22.5.0",
"@wordpress/stylelint-config": "^23.11.0",
"async": "^3.2.6",
"browser-sync": "^3.0.3",
"browser-sync-webpack-plugin": "^2.3.0",
"chalk": "^4.1.2",
"eslint-plugin-prettier": "^5.2.3",
"husky": "^9.1.7",
"laravel-mix": "^6.0.49",
"lint-staged": "^15.4.3",
"mix-tailwindcss": "^1.3.0",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"resolve-url-loader": "^5.0.0",
"sass": "^1.84.0",
"sass-loader": "^16.0.5",
"shelljs": "^0.8.5",
"tailwindcss": "^4.0.9",
"webpack": "^5.98.0"
},
"browserslist": [
"> 1%",
"last 1 Android versions",
"last 1 ChromeAndroid versions",
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari versions",
"last 2 iOS versions",
"last 2 Edge versions",
"last 2 Opera versions"
],
"lint-staged": {
"*.js": [
"prettier -c",
"eslint --cache"
],
"*.(sa|sc|c)ss": [
"prettier -c",
"stylelint --cache"
],
"*.php": "vendor/bin/phpcs",
"*.md": "prettier -c"
},
"glotpress": {
"project": "advanced-ads-genesis",
"destination": "./languages/"
},
"wpPot": {
"output": "/languages/",
"file": "advanced-ads-genesis.pot",
"domain": "advanced-ads-genesis"
}
}