-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (40 loc) · 1.17 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
{
"browserslist": [
"extends @wordpress/browserslist-config"
],
"private": true,
"scripts": {
"build": "mix",
"build:production": "mix --production",
"start": "mix watch",
"hot": "mix watch --hot",
"test": "npm run lint && composer test",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint *.js assets/**/*.js",
"lint:css": "stylelint assets/**/*.{css,scss}"
},
"devDependencies": {
"@babel/eslint-parser": "^7.22.9",
"@babel/preset-react": "^7.24.7",
"@tinypixelco/laravel-mix-wp-blocks": "^1.0.0",
"@wordpress/babel-preset-default": "^8.0",
"@wordpress/base-styles": "^5.3",
"@wordpress/browserslist-config": "^6.3",
"@wordpress/dependency-extraction-webpack-plugin": "^6.3",
"eslint": "^8.45",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.23.2",
"glob": "^9.0",
"laravel-mix": "^6.0.18",
"npm-run-all": "^4.1",
"resolve-url-loader": "^5.0.0",
"sass": "^1.26.3",
"sass-loader": "^15",
"stylelint": "^16.0",
"stylelint-config-standard-scss": "^13.0",
"vue-template-compiler": "^2.6.12"
},
"dependencies": {
"sass-mq": "^6.0.0"
}
}