This repository has been archived by the owner on Aug 29, 2024. It is now read-only.
forked from roots/sage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.83 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
{
"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/sage.pot --ignore-domain --include=\"app,resources/assets,resources/views\"",
"translate:js": "wp i18n make-json ./resources/languages --no-purge --pretty-print"
},
"eslintConfig": {
"root": true,
"extends": [
"plugin:genero/recommended",
"plugin:genero/wordpress",
"plugin:vue/recommended"
]
},
"devDependencies": {
"@tinypixelco/laravel-mix-wp-blocks": "^1.0.0",
"@wordpress/babel-preset-default": "^4.13.0",
"@wordpress/browserslist-config": "^2.6.0",
"@wordpress/dependency-extraction-webpack-plugin": "^2.5.0",
"babel-eslint": "^10.1.0",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^2.0.1",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-plugin-genero": "git+https://github.com/generoi/eslint-plugin-genero.git",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-vue": "^6.1.2",
"laravel-mix": "^5.0.4",
"laravel-mix-copy-watched": "^2.2.4",
"laravel-mix-purgecss": "^5.0.0-rc.1",
"npm-run-all": "^4.1",
"palette-webpack-plugin": "^1.0.0",
"postcss-inline-svg": "^4.1.0",
"purgecss-with-wordpress": "git+https://github.com/generoi/purgecss-with-wordpress.git",
"rimraf": "^3.0.2",
"sass": "^1.26.3",
"sass-loader": "^8.0.2",
"stylelint": "^13.3.3",
"stylelint-config-standard": "^20.0.0",
"vue-template-compiler": "^2.6.11"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.12.0",
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-brands-svg-icons": "^5.12.0",
"@fortawesome/free-regular-svg-icons": "^5.12.0",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"foundation-sites": "^6.6.1",
"headroom.js": "^0.10.3",
"jquery": "^3.4.1",
"vue": "^2.6.11"
}
}