-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.85 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.85 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
{
"name": "axeptio-wordpress-plugin",
"version": "2.3",
"packageManager": "yarn@4.9.2",
"license": "GPL-3.0-or-later",
"scripts": {
"build": "TAILWIND_MODE=build mix",
"build:production": "TAILWIND_MODE=build mix --production",
"start": "TAILWIND_MODE=watch mix watch",
"hot": "TAILWIND_MODE=watch mix watch --hot",
"dev": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "TAILWIND_MODE=watch mix watch",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"translate": "run-s -c translate:*",
"translate:pot": "find ./resources ./inc -iname \"*.php\" | xargs xgettext --add-comments=TRANSLATORS --force-po --from-code=UTF-8 --default-domain=de_DE -k__ -k_e -k_n:1,2 -k_x:1,2c -k_ex:1,2c -k_nx:4c,12 -kesc_attr__ -kesc_attr_e -kesc_attr_x:1,2c -kesc_html__ -kesc_html_e -kesc_html_x:1,2c -k_n_noop:1,2 -k_nx_noop:3c,1,2, -k__ngettext_noop:1,2 -o languages/themosis.pot && find ./views -iname '*.blade.php' | xargs xgettext --language=Python --add-comments=TRANSLATORS --force-po --from-code=UTF-8 --ignore-domain -k__ -k_e -k_n:1,2 -k_x:1,2c -k_ex:1,2c -k_nx:4c,12 -kesc_attr__ -kesc_attr_e -kesc_attr_x:1,2c -kesc_html__ -kesc_html_e -kesc_html_x:1,2c -k_n_noop:1,2 -k_nx_noop:3c,1,2, -k__ngettext_noop:1,2 -j -o languages/themosis.pot",
"translate:js": "wp i18n make-json ./languages --no-purge --pretty-print",
"eslint": "eslint assets/js --ext .js",
"fix-eslint": "eslint assets/js --ext .js --fix",
"prepare": "husky"
},
"keywords": [
"WordPress",
"Browsersync",
"PostCSS",
"Autoprefixer",
"imagemin",
"Webpack",
"stylelint",
"ESLint"
],
"engines": {
"node": ">= 16.14.0",
"npm": ">= 8.3.1"
},
"devDependencies": {
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@wordpress/eslint-plugin": "^22.6",
"browser-sync": "^3.0.3",
"browser-sync-webpack-plugin": "^2.3.0",
"css-loader": "^7.1.2",
"eslint": "^8.57.0",
"husky": "^9.1.7",
"laravel-mix": "^6.0.49",
"lint-staged": "^15.5.0",
"postcss": "^8.4.31",
"postcss-loader": "^7.2.4",
"postcss-nested": "^6.0.1",
"postcss-preset-env": "^8.3.1",
"prettier": "^3.5.3",
"style-loader": "^3.3.2",
"tailwindcss": "^3.3.1",
"webpack": "^5.94.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.3"
},
"dependencies": {
"@alpinejs/persist": "^3.14.9",
"alpinejs": "^3.14.9",
"cross-env": "^7.0.3"
},
"lint-staged": {
"**/*.{js,md,yml,mjs}": "prettier --write"
},
"volta": {
"node": "18.20.8"
}
}