This repository was archived by the owner on Feb 6, 2026. It is now read-only.
forked from wp-graphql/wp-graphql
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.46 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.46 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
{
"name": "wp-graphql",
"private": true,
"version": "2.1.2",
"description": "GraphQL API for WordPress",
"homepage": "https://github.com/wp-graphql/wp-graphql#readme",
"author": "WPGraphQL <info@wpgraphql.com> (https://www.wpgraphql.com)",
"license": "GPL-3.0",
"email": "info@wpgraphql.com",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/wp-graphql/wp-graphql.git"
},
"keywords": [
"WordPress",
"GraphQL"
],
"bugs": {
"url": "https://github.com/wp-graphql/wp-graphql/issues"
},
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"check-engines": "wp-scripts check-engines",
"build": "wp-scripts build",
"start": "wp-scripts start",
"test:e2e": "wp-scripts test-playwright --config tests/e2e/playwright.config.js",
"test:e2e:ui": "wp-scripts test-playwright --config tests/e2e/playwright.config.js --ui",
"test:unit": "wp-scripts test-unit-js --config tests/js-unit/jest.config.js",
"format": "wp-scripts format",
"format:src": "wp-scripts format ./src",
"lint:js": "wp-scripts lint-js ./src",
"lint:js:fix": "wp-scripts lint-js --fix ./src",
"lint:js:src": "wp-scripts lint-js ./src",
"wp-env": "wp-env",
"prepare": "husky install",
"changeset:generate": "node scripts/generate-changeset.js",
"changeset:analyze": "node scripts/analyze-changesets.js",
"release:notes": "node scripts/generate-release-notes.js",
"version:bump": "node scripts/bump-version.js",
"changelog:update": "node scripts/update-changelog.js",
"readme:update": "node scripts/update-readme.js",
"changelogs:update": "node scripts/update-changelogs.js",
"release:prepare": "npm run version:bump && npm run changelogs:update",
"upgrade-notice:update": "node scripts/update-upgrade-notice.js",
"since-tags:update": "node scripts/update-since-tags.js"
},
"dependencies": {
"@ant-design/icons": "5.6.1",
"@apollo/client": "3.12.11",
"@wordpress/api-fetch": "^7.17.0",
"@wordpress/components": "^28.13.0",
"@wordpress/compose": "5.20.0",
"@wordpress/element": "^5.35.0",
"@wordpress/hooks": "3.58.0",
"@wordpress/i18n": "^5.17.0",
"@wordpress/icons": "^10.17.0",
"antd": "5.23.4",
"graphiql": "1.11.5",
"graphql": "16.10.0",
"lz-string": "1.5.0",
"query-string": "7.1.3",
"styled-components": "5.3.11",
"use-error-boundary": "2.0.6",
"use-query-params": "1.2.3",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@babel/preset-env": "^7.26.8",
"@babel/preset-react": "^7.26.3",
"@playwright/test": "^1.50.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.3.1",
"@types/node": "^20.17.17",
"@wordpress/babel-preset-default": "^7.42.0",
"@wordpress/env": "^10.17.0",
"@wordpress/jest-preset-default": "^12.17.0",
"@wordpress/scripts": "^27.9.0",
"babel-jest": "^29.7.0",
"babel-plugin-inline-json-import": "^0.3.2",
"chalk": "^4.1.2",
"concurrently": "^9.1.2",
"dotenv": "^16.4.7",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"sort-package-json": "^2.14.0",
"webpack-remove-empty-scripts": "^1.0.4",
"archiver": "^5.3.1",
"fs-extra": "^11.1.1",
"glob": "^10.3.3",
"yargs": "^17.7.2"
},
"lint-staged": {
"package.json": "sort-package-json"
},
"overrides": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"engines": {
"node": ">=20",
"npm": ">=8"
}
}