-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.75 KB
/
package.json
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
{
"workspaces": [
"packages/*",
"plugins/create-wordpress-plugin",
"plugins/create-wordpress-theme"
],
"dependencies": {
"@alleyinteractive/block-editor-tools": "^0.11.0",
"@tinymce/tinymce-react": "^5.1.1",
"@wordpress/block-editor": "^14.3.15"
},
"devDependencies": {
"@alleyinteractive/build-tool": "^0.1.5",
"@alleyinteractive/create-entry": "^0.0.4",
"@alleyinteractive/eslint-config": "^0.1.6",
"@alleyinteractive/stylelint-config": "^0.0.2",
"@alleyinteractive/tsconfig": "^0.1.1",
"@babel/preset-env": "^7.26.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/jest": "^29.5.14",
"@types/wordpress__edit-post": "^8.4.2",
"@wordpress/babel-preset-default": "^8.8.2",
"@wordpress/scripts": "^30.0.6",
"babel-jest": "^29.7.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"turbo": "^2.3.3",
"typescript": "^5.7.2",
"webpack-cli": "^5.1.4",
"wp-types": "^4.67.0"
},
"engines": {
"node": "22",
"npm": "10"
},
"license": "GPL-2.0-or-later",
"name": "create-wordpress-project",
"scripts": {
"build": "turbo run build",
"create-package": "turbo gen workspace --destination packages --type package",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"packages-update": "turbo run packages-update -- --dist-tag=wp-6.7",
"start:hot": "turbo run start:hot",
"start": "turbo run start",
"stylelint": "turbo run stylelint",
"stylelint:fix": "turbo run stylelint:fix",
"test:watch": "turbo run test:watch",
"test": "turbo run test"
},
"version": "1.0.0",
"packageManager": "npm@10.9.2"
}