This repository has been archived by the owner on Oct 2, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
70 lines (70 loc) · 2.7 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
{
"private": true,
"browserslist": [
"extends @wordpress/browserslist-config"
],
"scripts": {
"build": "cross-env NODE_ENV=development run-s mix",
"build:production": "cross-env NODE_ENV=production run-s clean mix",
"start": "cross-env NODE_ENV=development run-s \"mix --watch\"",
"hot": "cross-env NODE_ENV=development run-s build mix:hot",
"mix": "webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"mix:hot": "webpack-dev-server --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"clean": "run-p clean:*",
"clean:dist": "rimraf dist",
"clean:cache": "rimraf storage/framework/cache/*.php storage/framework/cache/data/*.php",
"clean:views": "rimraf storage/framework/views/*.php",
"lint": "run-s -c lint:*",
"lint:scripts": "eslint resources/assets/scripts",
"lint:styles": "stylelint \"resources/assets/**/*.{vue,css,sass,scss,less}\"",
"test": "run-s -c lint",
"translate": "run-s -c translate:*",
"translate:pot": "wp i18n make-pot . ./resources/languages/stage.pot --ignore-domain --include=\"app,resources/assets,resources/views\"",
"translate:js": "wp i18n make-json ./resources/languages --no-purge --pretty-print"
},
"devDependencies": {
"@tinypixelco/laravel-mix-wp-blocks": "^1.1.0",
"@wordpress/babel-preset-default": "^4.17.0",
"@wordpress/browserslist-config": "^2.7.0",
"@wordpress/dependency-extraction-webpack-plugin": "^2.8.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"browser-sync": "^2.26.12",
"browser-sync-webpack-plugin": "^2.0.1",
"cross-env": "^7.0.2",
"eslint": "^7.20.0",
"eslint-plugin-import": "^2.22.0",
"laravel-mix": "^5.0.4",
"laravel-mix-copy-watched": "^2.2.3",
"laravel-mix-export-tailwind-config": "^0.1.2",
"laravel-mix-purgecss": "^5.0.0",
"mix-tailwindcss": "^1.2.0",
"npm-run-all": "^4.1",
"purgecss-with-wordpress": "^4.0.0",
"rimraf": "^3.0.2",
"sass": "^1.32.7",
"sass-loader": "^10.1.0",
"stylelint": "^13.6.1",
"stylelint-config-standard": "^20.0.0",
"tailwindcss": "^2.0.3",
"tailwindcss-aspect-ratio": "^3.0.0",
"tailwindcss-wordpress": "^0.1.1",
"vue-template-compiler": "^2.6.11",
"write-webpack-plugin": "^1.1.0"
},
"dependencies": {
"@barba/core": "^2.9.7",
"@barba/css": "^2.1.15",
"autoprefixer": "^10.2.4",
"colcade": "^0.2.0",
"custom-event-polyfill": "^1.0.7",
"detect-it": "^3.0.5",
"infinite-scroll": "^3.0.6",
"jquery": "^3.5.1",
"jquery-accessible-accordion-aria": "^2.6.1",
"js-dom-router": "^1.0",
"lozad": "^1.4.0",
"photoswipe": "^4.1.3",
"postcss": "^8.2.6"
}
}