forked from wp-graphql/wp-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.92 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
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
{
"name": "wp-graphql",
"version": "1.12.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",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"build": "wp-scripts build",
"pretty": "prettier --write ./packages",
"format:docs": "remark docs/ --quiet --output",
"start": "wp-scripts start",
"test": "echo \"Error: no test specified\" && exit 1",
"test-e2e": "wp-scripts test-e2e --config tests/e2e/jest.config.js",
"test-e2e:debug": "wp-scripts --inspect-brk test-e2e --config tests/e2e/jest.config.js --puppeteer-devtools",
"test-e2e:watch": "npm run test-e2e -- --watch",
"test:unit": "wp-scripts test-unit-js --config tests/js-unit/jest.config.js",
"wp-env": "wp-env"
},
"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"
},
"dependencies": {
"@ant-design/icons": "4.7.0",
"@apollo/client": "3.6.9",
"@wordpress/compose": "5.11.0",
"@wordpress/hooks": "3.13.0",
"antd": "4.21.6",
"graphiql": "1.7.2",
"graphql": "16.8.1",
"lz-string": "1.4.4",
"query-string": "7.1.1",
"styled-components": "5.3.5",
"use-error-boundary": "2.0.6",
"use-query-params": "1.2.3"
},
"devDependencies": {
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.3.0",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/user-event": "14.2.3",
"@wordpress/e2e-test-utils": "7.9.0",
"@wordpress/env": "5.4.0",
"@wordpress/jest-console": "5.4.0",
"@wordpress/jest-puppeteer-axe": "4.0.2",
"@wordpress/scripts": "23.5.0",
"babel-jest": "28.1.3",
"babel-loader": "8.2.5",
"babel-plugin-inline-json-import": "0.3.2",
"babel-plugin-react-native-classname-to-style": "1.2.2",
"babel-plugin-react-native-platform-specific-extensions": "1.1.1",
"babel-plugin-transform-remove-console": "6.9.4",
"expect-puppeteer": "6.1.1",
"husky": "8.0.1",
"jest-junit": "14.0.0",
"jest-message-util": "28.1.3",
"jest-serializer-enzyme": "1.0.0",
"jest-watch-typeahead": "2.0.0",
"jsdom": "20.0.0",
"lint-staged": "13.0.3",
"postcss-loader": "7.0.1",
"puppeteer-testing-library": "0.6.0",
"remark-cli": "^11.0.0",
"remark-frontmatter": "^4.0.1",
"remark-preset-lint-consistent": "^5.1.1",
"remark-preset-lint-markdown-style-guide": "^5.1.2",
"remark-preset-lint-recommended": "^6.1.2"
},
"lint-staged": {
"*.php": "composer run check-cs"
},
"wp-env": {
"plugins": [
"."
]
},
"overrides": {
"react": "18.2.0",
"react-dom": "18.2.0"
}
}