-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.06 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.06 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
{
"name": "@newfold-labs/wp-module-performance",
"description": "Module to manage performance settings in newfold plugins",
"license": "GPL-2.0-or-later",
"private": true,
"engines": {
"node": ">=22.11.0",
"npm": ">=10.9.0"
},
"contributors": [
"Abdulrahman Al Ani (https://alani.dev/)",
"Evan Mullins (https://evanmullins.com)",
"Jonathan Desrosiers (https://jonathandesrosiers.com)",
"Micah Wood (https://wpscholar.com)",
"William Earnhardt (https://wearnhardt.com)",
"Arun Shenoy (https://github.com/arunshenoy99)",
"Alessio Torissi (https://github.com/AleTorrisi)",
"Armando Liccardo (https://github.com/geckod22)"
],
"dependencies": {
"@newfold/ui-component-library": "^2.1.1",
"@newfold/wp-module-runtime": "^1.1.3",
"html-react-parser": "^5.2.11"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.10",
"@testing-library/cypress": "^10.1.0",
"@wordpress/env": "^10.36.0",
"@wordpress/i18n": "^6.9.0",
"@wordpress/scripts": "^31.1.0",
"autoprefixer": "^10.4.23",
"chalk": "^5.6.2",
"css-minimizer-webpack-plugin": "^7.0.4",
"cypress": "^15.8.1",
"cypress-axe": "^1.7.0",
"glob": "^13.0.0",
"postcss": "^8.5.6",
"postcss-loader": "^8.2.0",
"tailwindcss": "^3.4.17"
},
"scripts": {
"build": "npm run build:assets && npm run build:react",
"start": "npm run start:assets & npm run start:react",
"build:assets": "wp-scripts build --config src/webpack/assets.config.js",
"build:react": "wp-scripts build --config src/webpack/react.config.js",
"start:assets": "wp-scripts start --config src/webpack/assets.config.js",
"start:react": "wp-scripts start --config src/webpack/react.config.js",
"i18n-build": "composer run-script i18n",
"i18n-rename-json": "node ./src/translations-json-rename.js",
"i18n": "npm run -s i18n-build && npm run i18n-rename-json",
"i18n-ci-pre": "composer run-script i18n-ci-pre",
"i18n-ci-post": "composer run-script i18n-ci-post && npm run i18n-rename-json",
"lint-js": "wp-scripts lint-js"
}
}