-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.68 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.68 KB
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
{
"name": "easy-file-uploader",
"repository": "https://github.com/ZIORWebDev/easy-file-uploader.git",
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "cross-env NODE_ENV=production && wp-scripts build",
"watch": "cross-env NODE_ENV=development && wp-scripts start",
"package": "rm -f $npm_package_name.zip && mkdir -p $npm_package_name && rsync -av --exclude='.git*' --exclude='node_modules/' --exclude='/src/' --exclude='/tests/' --exclude='/ci/' --exclude='/tools/' --exclude='.stylelintignore' --exclude='.editorconfig' --exclude='eslint.config.js' --exclude='playwright.config.js' --exclude='webpack.config.js' --exclude='*.log' --exclude='*.yml' --exclude='*.md' --exclude='/package.json' --exclude='/.cursorrc.json' --exclude='*.Identifier' --exclude='*.lock' --exclude='*.zip' --exclude=$npm_package_name --exclude='phpcs.xml' ./ $npm_package_name/ && zip -r $npm_package_name.zip $npm_package_name && rm -rf $npm_package_name"
},
"dependencies": {
"filepond": "^4.32.7",
"filepond-plugin-file-validate-size": "^2.2.8",
"filepond-plugin-file-validate-type": "^1.2.9"
},
"devDependencies": {
"@wordpress/scripts": "^31.2.0",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^8.57.1",
"eslint-config-wordpress": "^2.0.0",
"eslint-plugin-jsdoc": "^50.6.8",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-perfectionist": "^4.10.1",
"mini-css-extract-plugin": "^2.9.2",
"terser-webpack-plugin": "^5.3.11",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"yarn": "^1.22.22"
},
"resolutions": {
"form-data": "^4.0.4"
}
}