-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 849 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 849 Bytes
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
{
"private": true,
"browserslist": [
"extends @wordpress/browserslist-config"
],
"engines": {
"node": ">=12.14.0"
},
"scripts": {
"build": "mix",
"build:production": "mix --production",
"start": "mix watch",
"hot": "mix watch --hot",
"clear": "wp acorn optimize:clear",
"test": "npm run lint",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint resources/scripts"
},
"devDependencies": {
"@wordpress/babel-preset-default": "^6.1.0",
"@wordpress/browserslist-config": "^4.0.0",
"@wordpress/dependency-extraction-webpack-plugin": "^3.1.3",
"babel-eslint": "^10.1.0",
"eslint": "^7.27.0",
"eslint-plugin-import": "^2.23.3",
"laravel-mix": "^6.0.19",
"laravel-mix-clean": "^0.1.0"
},
"dependencies": {
"live-form-validation": "^1.10.0"
}
}