-
Notifications
You must be signed in to change notification settings - Fork 469
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.12 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.12 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
{
"name": "wpgraphql-monorepo",
"private": true,
"packageManager": "npm@10.8.2",
"description": "Monorepo for WPGraphQL and official extensions",
"repository": {
"type": "git",
"url": "git+https://github.com/wp-graphql/wp-graphql.git"
},
"workspaces": [
"plugins/*",
"websites/*"
],
"engines": {
"node": ">=22",
"npm": ">=10"
},
"scripts": {
"build": "turbo run build",
"format": "wp-scripts format",
"start": "turbo run start",
"test": "turbo run test",
"test:scripts": "node scripts/update-upgrade-notice.test.js && node scripts/update-version-constants.test.js && node scripts/update-readme-changelog.test.js",
"lint": "turbo run lint",
"zip": "turbo run zip",
"zip:wp-graphql": "composer -d plugins/wp-graphql run-script build-plugin",
"wp-env": "wp-env",
"wp-env:start": "wp-env start",
"wp-env:stop": "wp-env stop",
"wp-env:destroy": "wp-env destroy",
"prepare": "husky install"
},
"devDependencies": {
"@wordpress/env": "^10.39.0",
"@wordpress/prettier-config": "^4.44.0",
"@wordpress/scripts": "^27.9.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"turbo": "^2.9.6"
}
}