-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.5 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.5 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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "cloudinary",
"title": "Cloudinary",
"author": "XWP",
"license": "GPL-2.0+",
"private": true,
"homepage": "https://github.com/cloudinary/cloudinary_wordpress",
"repository": {
"type": "git",
"url": "https://github.com/cloudinary/cloudinary_wordpress.git"
},
"engines": {
"node": ">=22",
"npm": ">=10"
},
"scripts": {
"build": "wp-scripts build",
"deploy": "npm run build && grunt deploy && npm run release",
"deploy-assets": "grunt deploy-assets",
"dev": "wp-scripts start",
"env:start": "wp-env start",
"env:stop": "wp-env stop",
"env:destroy": "wp-env destroy",
"env:logs": "wp-env logs",
"env:cli": "wp-env run cli",
"env:clean": "wp-env clean all",
"i18n": "grunt i18n",
"lint": "npm-run-all lint:php lint:js lint:style",
"lint:js": "wp-scripts lint-js",
"lint:js:fix": "wp-scripts lint-js --fix",
"lint:php": "composer lint",
"lint:php:fix": "composer fix",
"lint:style": "wp-scripts lint-style",
"package": "./package/package.sh",
"package:build": "npm run build && grunt package",
"postinstall": "composer install",
"readme": "composer readme",
"release": "release-it --no-increment",
"release:ci": "release-it --ci",
"release:dry": "release-it --dry-run",
"prepare": "husky"
},
"lint-staged": {
"*.php": [
"npm run lint:php"
],
"*.js": [
"npm run lint:js"
],
"*.scss": [
"npm run lint:style"
]
},
"dependencies": {
"@codemirror/lang-json": "^6.0.2",
"@codemirror/state": "^6.5.2",
"@codemirror/theme-one-dark": "^6.1.3",
"chart.js": "^4.5.1",
"classnames": "^2.3.1",
"codemirror": "^6.0.2",
"dot-object": "^2.1.4",
"file-size": "^1.0.0",
"human-format": "^1.2.1",
"loading-attribute-polyfill": "^2.1.1",
"lodash": "^4.17.21",
"progressbar.js": "^1.1.1",
"tippy.js": "^6.3.1"
},
"devDependencies": {
"@release-it/bumper": "^7.0.5",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@wordpress/api-fetch": "^7.34.0",
"@wordpress/block-editor": "^15.12.0",
"@wordpress/blocks": "^15.7.0",
"@wordpress/browserslist-config": "^6.34.0",
"@wordpress/components": "^30.7.0",
"@wordpress/data": "^10.34.0",
"@wordpress/element": "^6.34.0",
"@wordpress/env": "^10.12.0",
"@wordpress/eslint-plugin": "^22.20.0",
"@wordpress/i18n": "^6.7.0",
"@wordpress/scripts": "^31.0.0",
"copy-webpack-plugin": "^13.0.1",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.2",
"css-unicode-loader": "^1.0.3",
"cssnano": "^7.1.2",
"eslint": "^8.57.1",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-react-hooks": "^7.0.1",
"file-loader": "^6.2.0",
"grunt": "^1.5.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-compress": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-shell": "^4.0.0",
"grunt-text-replace": "^0.4.0",
"grunt-wp-deploy": "^2.1.2",
"grunt-wp-i18n": "^1.0.3",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"load-grunt-tasks": "^5.1.0",
"mini-css-extract-plugin": "^2.9.4",
"npm-run-all": "^4.1.5",
"postcss-loader": "^8.2.0",
"prettier": "npm:wp-prettier@^3.0.0",
"release-it": "^19.0.6",
"rtlcss-webpack-plugin": "^4.0.4",
"terser-webpack-plugin": "^5.3.14",
"webpack": "^5.94.0",
"webpack-cli": "^6.0.1"
},
"overrides": {
"react-autosize-textarea": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
},
"version": "3.3.3"
}