-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.11 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "atlasgql",
"version": "1.1.1",
"description": "A self-composing GraphQL server library using TypeScript, Express and Apollo Server",
"private": false,
"directories": {
"test": "__tests__"
},
"scripts": {
"build": "tsc",
"publish-lib": "npm run test && npm run build && npm publish",
"publish-beta": "npm run build && npm publish --tag beta",
"publish-dryrun": "npm run build && npm publish --dry-run",
"lint": "tslint -c tslint.json 'src/**/*.{ts}'",
"test": "npm run lint && jest"
},
"keywords": [
"TypeScript",
"Apollo Server",
"GraphQL",
"BFF",
"MicroService",
"WebService"
],
"author": "Marcello Barile <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.2",
"@types/core-js": "^2.5.5",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/express-serve-static-core": "^4.17.28",
"@types/jest": "^27.4.1",
"@types/mime": "^2.0.3",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/node": "^14.14.20",
"@types/serve-static": "^1.13.10",
"graphql-type-json": "^0.3.2",
"jest": "^27.5.1",
"jest-cli": "^27.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"tslint": "^6.1.3",
"typescript": "^4.6.2"
},
"dependencies": {
"@gql2ts/from-schema": "^2.0.0-4",
"@gql2ts/types": "^1.9.0",
"@gql2ts/util": "^1.9.0",
"apollo-server": "^3.6.4",
"apollo-server-core": "^3.6.4",
"apollo-server-express": "^3.6.4",
"apollo-server-types": "^3.5.1",
"app-root-path": "^3.0.0",
"chalk": "^4.1.2",
"class-validator": "^0.13.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"debug": "^4.3.3",
"ejs": "^3.1.6",
"express": "^4.17.3",
"graphql": "^15.8.0",
"graphql-subscriptions": "^2.0.0",
"graphql-upload": "^13.0.0",
"inquirer": "^8.2.1",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"reflect-metadata": "^0.1.13",
"subscriptions-transport-ws": "^0.11.0",
"type-graphql": "^1.1.1"
},
"peerDependencies": {
"@types/express": "4.x",
"apollo-server-types": "3.x",
"graphql": "^15.x",
"type-graphql": "1.x",
"class-validator": "0.x",
"typescript": "4.x"
},
"repository": {
"type": "git",
"url": "https://github.com/marcellobarile/atlasgql"
},
"engines": {
"node": ">=7.8.0",
"npm": ">=4.2.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"jest": {
"verbose": true,
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/dist/",
"<rootDir>/build/",
"<rootDir>/config/",
"<rootDir>/graphql/"
],
"coverageReporters": [
"lcov",
"html"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"transform": {
"^.+\\.(ts|js)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/(.*)\\.(test|spec))\\.ts$"
}
}