-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.54 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
{
"browserslist": [
"extends @wordpress/browserslist-config",
"not ie 11"
],
"private": true,
"scripts": {
"build": "cross-env NODE_ENV=development run-s mix",
"build:production": "cross-env NODE_ENV=production run-s 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",
"lint": "npm run -s lint:scripts && npm run -s lint:styles",
"lint:scripts": "eslint *.js src",
"lint:styles": "stylelint src/**/*.{css,scss}",
"test": "npm run -s lint && composer test"
},
"devDependencies": {
"@tinypixelco/laravel-mix-wp-blocks": "^1.0.0",
"@wordpress/babel-preset-default": "^4.13.0",
"@wordpress/base-styles": "^2.0.0",
"@wordpress/browserslist-config": "^2.6.0",
"@wordpress/dependency-extraction-webpack-plugin": "^2.5.0",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-react": "^7.20.5",
"glob": "^7.2.0",
"laravel-mix": "^5.0.4",
"npm-run-all": "^4.1",
"resolve-url-loader": "^3.1.0",
"sass": "^1.26.3",
"sass-loader": "^8.0.2",
"stylelint": "^13.6.1",
"stylelint-config-standard": "^20.0.0",
"vue-template-compiler": "^2.6.12"
},
"dependencies": {
"lozad": "^1.16.0"
}
}