mirror of
https://github.com/strapi/strapi.git
synced 2025-12-30 16:53:05 +00:00
102 lines
2.7 KiB
JSON
102 lines
2.7 KiB
JSON
{
|
|
"name": "@strapi/plugin-graphql",
|
|
"version": "4.20.3",
|
|
"description": "Adds GraphQL endpoint with default API methods.",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/strapi/strapi.git",
|
|
"directory": "packages/plugins/graphql"
|
|
},
|
|
"license": "SEE LICENSE IN LICENSE",
|
|
"author": {
|
|
"name": "Strapi Solutions SAS",
|
|
"email": "hi@strapi.io",
|
|
"url": "https://strapi.io"
|
|
},
|
|
"maintainers": [
|
|
{
|
|
"name": "Strapi Solutions SAS",
|
|
"email": "hi@strapi.io",
|
|
"url": "https://strapi.io"
|
|
}
|
|
],
|
|
"exports": {
|
|
"./strapi-admin": {
|
|
"types": "./dist/admin/src/index.d.ts",
|
|
"source": "./admin/src/index.ts",
|
|
"import": "./dist/admin/index.mjs",
|
|
"require": "./dist/admin/index.js",
|
|
"default": "./dist/admin/index.js"
|
|
},
|
|
"./strapi-server": {
|
|
"types": "./dist/server/src/index.d.ts",
|
|
"source": "./server/src/index.ts",
|
|
"import": "./dist/server/index.mjs",
|
|
"require": "./dist/server/index.js",
|
|
"default": "./dist/server/index.js"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"files": [
|
|
"./dist",
|
|
"strapi-server.js"
|
|
],
|
|
"scripts": {
|
|
"build": "strapi plugin:build --force",
|
|
"clean": "run -T rimraf ./dist",
|
|
"lint": "run -T eslint .",
|
|
"watch": "strapi plugin:watch"
|
|
},
|
|
"dependencies": {
|
|
"@graphql-tools/schema": "8.5.1",
|
|
"@graphql-tools/utils": "^8.13.1",
|
|
"@strapi/design-system": "1.14.1",
|
|
"@strapi/helper-plugin": "4.20.3",
|
|
"@strapi/icons": "1.14.1",
|
|
"@strapi/utils": "4.20.3",
|
|
"apollo-server-core": "3.12.1",
|
|
"apollo-server-koa": "3.10.0",
|
|
"graphql": "^15.5.1",
|
|
"graphql-depth-limit": "^1.1.0",
|
|
"graphql-playground-middleware-koa": "^1.6.21",
|
|
"graphql-scalars": "1.22.2",
|
|
"graphql-upload": "^13.0.0",
|
|
"koa-compose": "^4.1.0",
|
|
"lodash": "4.17.21",
|
|
"nexus": "1.3.0",
|
|
"pluralize": "8.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@strapi/strapi": "4.20.3",
|
|
"@strapi/types": "4.20.3",
|
|
"@types/graphql-depth-limit": "1.1.5",
|
|
"@types/graphql-upload": "8.0.12",
|
|
"cross-env": "^7.0.3",
|
|
"eslint-config-custom": "4.20.3",
|
|
"koa": "2.13.4",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-router-dom": "5.3.4",
|
|
"styled-components": "5.3.3",
|
|
"tsconfig": "4.20.3",
|
|
"typescript": "5.2.2"
|
|
},
|
|
"peerDependencies": {
|
|
"@strapi/strapi": "^4.0.0",
|
|
"react": "^17.0.0 || ^18.0.0",
|
|
"react-dom": "^17.0.0 || ^18.0.0",
|
|
"react-router-dom": "^5.2.0",
|
|
"styled-components": "^5.2.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0 <=20.x.x",
|
|
"npm": ">=6.0.0"
|
|
},
|
|
"strapi": {
|
|
"displayName": "GraphQL",
|
|
"name": "graphql",
|
|
"description": "Adds GraphQL endpoint with default API methods.",
|
|
"kind": "plugin"
|
|
}
|
|
}
|