-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 3.99 KB
/
Copy pathpackage.json
File metadata and controls
131 lines (131 loc) · 3.99 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
121
122
123
124
125
126
127
128
129
130
131
{
"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",
"build:docs": "rm -rf docs/ && jsdoc -c hookdoc-conf.json php ui-definitions cloudinary.php",
"deploy": "npm run build && grunt deploy",
"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": "patch-package && composer install",
"readme": "composer readme",
"prepare": "husky",
"test:e2e": "playwright test --config tests/e2e/playwright.config.js",
"test:e2e:debug": "playwright test --config tests/e2e/playwright.config.js --ui"
},
"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.7.0",
"@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": {
"@playwright/test": "^1.59.1",
"@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": "^37.0.0",
"@wordpress/data": "^10.34.0",
"@wordpress/e2e-test-utils-playwright": "^1.44.0",
"@wordpress/element": "^6.34.0",
"@wordpress/env": "^10.12.0",
"@wordpress/eslint-plugin": "^25.7.0",
"@wordpress/i18n": "^6.7.0",
"@wordpress/scripts": "^33.0.0",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^8.0.0",
"css-unicode-loader": "^1.0.3",
"cssnano": "^7.1.2",
"dotenv": "^17.3.1",
"eslint": "^10.8.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-react-hooks": "^7.0.1",
"file-loader": "^6.2.0",
"globals": "^16.5.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",
"jsdoc": "^4.0.5",
"lint-staged": "^16.2.6",
"load-grunt-tasks": "^5.1.0",
"mini-css-extract-plugin": "^2.9.4",
"npm-run-all2": "^9.0.2",
"patch-package": "^8.0.1",
"postcss-loader": "^8.2.0",
"prettier": "npm:wp-prettier@^3.0.0",
"rtlcss-webpack-plugin": "^4.0.4",
"taffydb": "^2.7.3",
"terser-webpack-plugin": "^5.3.14",
"webpack": "^5.94.0",
"webpack-cli": "^6.0.1",
"wp-hookdoc": "^0.2.0"
},
"overrides": {
"react-autosize-textarea": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"eslint-import-resolver-typescript": "^3.10.1",
"serialize-javascript": "^7.0.7",
"uuid": "^14.0.1",
"brace-expansion": "^5.0.9",
"webpack-dev-server": "^5.2.6"
},
"version": "3.3.5"
}