forked from wp-graphql/wp-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.34 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.34 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
{
"name": "wp-graphql",
"private": true,
"version": "2.1.0",
"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",
"check-versions": "node scripts/check-versions.js",
"update-since": "node scripts/update-since-tags.js",
"simulate-workflow": "node scripts/simulate-workflow.js",
"test:changesets": "jest scripts/__tests__ --verbose --detectOpenHandles --forceExit",
"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": "changeset",
"version": "changeset version",
"release": "changeset publish"
},
"changesets": {
"changelog": "./scripts/changelog-formatters/changelog-md.js",
"commit": true,
"access": "public",
"baseBranch": "develop"
},
"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"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@changesets/get-github-info": "^0.6.0",
"@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": "^5.4.1",
"concurrently": "^9.1.2",
"dotenv": "^16.4.7",
"husky": "^9.1.7",
"glob": "^8.1.0",
"lint-staged": "^15.4.3",
"sort-package-json": "^2.14.0",
"webpack-remove-empty-scripts": "^1.0.4"
},
"lint-staged": {
"package.json": "sort-package-json"
},
"overrides": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"engines": {
"node": ">=20",
"npm": ">=8"
}
}