mirror of
https://github.com/vale981/apollo-server
synced 2025-03-12 14:06:40 -04:00
85 lines
2 KiB
JSON
85 lines
2 KiB
JSON
{
|
|
"name": "apollo-server-express",
|
|
"version": "2.0.0",
|
|
"description": "Production-ready Node.js GraphQL server for Express and Connect",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"compile": "tsc",
|
|
"prepublish": "npm run compile",
|
|
"watch": "tsc -w"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/apollographql/apollo-server/tree/master/packages/apollo-server-express"
|
|
},
|
|
"keywords": [
|
|
"GraphQL",
|
|
"Apollo",
|
|
"Server",
|
|
"Express",
|
|
"Connect",
|
|
"Javascript"
|
|
],
|
|
"author": "opensource@apollographql.com",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/apollographql/apollo-server/issues"
|
|
},
|
|
"homepage": "https://github.com/apollographql/apollo-server#readme",
|
|
"engines": {
|
|
"node": ">=6"
|
|
},
|
|
"dependencies": {
|
|
"@apollographql/graphql-playground-html": "^1.6.0",
|
|
"@types/accepts": "^1.3.5",
|
|
"@types/body-parser": "1.17.0",
|
|
"@types/cors": "^2.8.4",
|
|
"@types/express": "4.16.0",
|
|
"accepts": "^1.3.5",
|
|
"apollo-server-core": "2.0.0",
|
|
"apollo-upload-server": "^5.0.0",
|
|
"body-parser": "^1.18.3",
|
|
"cors": "^2.8.4",
|
|
"graphql-subscriptions": "^0.5.8",
|
|
"graphql-tools": "^3.0.4",
|
|
"type-is": "^1.6.16"
|
|
},
|
|
"devDependencies": {
|
|
"@types/connect": "3.4.32",
|
|
"@types/multer": "1.3.7",
|
|
"apollo-datasource-rest": "0.1.0",
|
|
"apollo-server-integration-testsuite": "2.0.0",
|
|
"connect": "3.6.6",
|
|
"express": "4.16.3",
|
|
"form-data": "2.3.2",
|
|
"multer": "1.3.1",
|
|
"node-fetch": "2.2.0",
|
|
"qs-middleware": "1.0.3"
|
|
},
|
|
"peerDependencies": {
|
|
"graphql": "^0.12.0 || ^0.13.0 || ^14.0.0"
|
|
},
|
|
"jest": {
|
|
"testEnvironment": "node",
|
|
"transform": {
|
|
"^.+\\.(ts|js)$": "ts-jest"
|
|
},
|
|
"moduleFileExtensions": [
|
|
"ts",
|
|
"js",
|
|
"json"
|
|
],
|
|
"testRegex": "src/__tests__/.*$",
|
|
"testPathIgnorePatterns": [
|
|
"<rootDir>/node_modules/",
|
|
"<rootDir>/lib/",
|
|
"test-utils"
|
|
],
|
|
"globals": {
|
|
"ts-jest": {
|
|
"skipBabel": true
|
|
}
|
|
}
|
|
}
|
|
}
|