-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 4.04 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 4.04 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
{
"name": "ionos-wordpress",
"version": "1.0.3",
"description": "Mono repository containing all WordPress plugins and themes developed for IONOS hosting",
"private": true,
"scripts": {
"build": "./scripts/build.sh",
"watch": "./scripts/watch.sh",
"start": "./scripts/start.sh",
"stop": "./scripts/stop.sh",
"destroy": "./scripts/destroy.sh",
"wp-env": "./scripts/wp-env.sh",
"clean": "./scripts/clean.sh",
"distclean": "./scripts/distclean.sh",
"changeset": "./scripts/changeset.sh",
"pre-release": "./scripts/pre-release.sh",
"release": "./scripts/release.sh",
"rector-fix-types": "./scripts/rector-fix-types.sh",
"lint": "./scripts/lint.sh",
"lint:php": "./scripts/lint.sh --use php",
"lint:prettier": "./scripts/lint.sh --use prettier",
"lint:wp": "./scripts/lint.sh --use wp",
"lint:js": "./scripts/lint.sh --use js",
"lint:css": "./scripts/lint.sh --use css",
"lint:pnpm": "./scripts/lint.sh --use pnpm",
"lint:i18n": "./scripts/lint.sh --use i18n",
"lint-fix": "./scripts/lint.sh --fix",
"lint-fix:php": "./scripts/lint.sh --fix --use php",
"lint-fix:prettier": "./scripts/lint.sh --fix --use prettier",
"lint-fix:wp": "./scripts/lint.sh --fix --use wp",
"lint-fix:js": "./scripts/lint.sh --fix --use js",
"lint-fix:css": "./scripts/lint.sh --fix --use css",
"lint-fix:i18n": "./scripts/lint.sh --fix --use i18n",
"update-dependencies": "./scripts/update-dependencies.sh",
"storybook:start": "./scripts/storybook.sh dev -p 6006",
"storybook:build": "./scripts/storybook.sh build -o ./build/storybook-static",
"storybook:test": "pnpm exec playwright test -c ./playwright-ct.config.js",
"test": "./scripts/test.sh",
"test:react": "./scripts/test.sh --use react",
"test:php": "./scripts/test.sh --use php",
"test:e2e": "./scripts/test.sh --use e2e",
"gh-cli": "./scripts/gh-cli.sh",
"go-waas": "./scripts/go-waas.sh",
"playground": "./scripts/playground.sh",
"prepare": "./scripts/_prepare.sh",
"stretch-extra": "./scripts/stretch-extra.sh",
"stretch": "./scripts/stretch.sh"
},
"keywords": [
"pnpm",
"php",
"monorepo",
"composer",
"ionos",
"hosting"
],
"author": {
"name": "IONOS Group"
},
"repository": {
"type": "git",
"url": "git@github.com:IONOS-WordPress/ionos-wordpress.git"
},
"homepage": "https://ionos-wordpress.github.io/ionos-wordpress/",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "2.30.0",
"@chromatic-com/storybook": "^5.1.1",
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@devcontainers/cli": "^0.85.0",
"@eslint/compat": "2.0.3",
"@eslint/js": "10.0.1",
"@playwright/browser-chromium": "^1.58.2",
"@playwright/experimental-ct-react": "^1.58.2",
"@playwright/test": "1.58.2",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-interactions": "^8.6.14",
"@storybook/addon-links": "^10.3.3",
"@storybook/addon-onboarding": "^10.3.3",
"@storybook/addon-webpack5-compiler-swc": "^4.0.3",
"@storybook/blocks": "^8.6.14",
"@storybook/react": "^10.3.3",
"@storybook/react-webpack5": "^10.3.3",
"@storybook/test": "^8.6.15",
"@types/node": "25.5.0",
"@wordpress/components": "catalog:",
"@wordpress/e2e-test-utils-playwright": "^1.42.0",
"@wordpress/env": "^11.2.0",
"@wordpress/scripts": "^31.7.0",
"@wp-now/wp-now": "0.1.74",
"eslint": "10.1.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-storybook": "^10.3.3",
"git-cz": "4.9.0",
"globals": "17.4.0",
"prettier": "3.8.1",
"react": "19.2.4",
"react-dom": "19.2.4",
"storybook": "^10.3.3",
"stylelint": "^17.6.0",
"stylelint-config-recommended-scss": "^17.0.0",
"stylelint-prettier": "^5.0.3",
"stylelint-scss": "^7.0.0"
}
}