-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.23 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.23 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
{
"name": "example-apollo",
"private": true,
"version": "1.0.0",
"description": "GraphQL Armor example for Apollo.",
"packageManager": "yarn@4.9.2",
"main": "./src/index.ts",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev src/index.ts",
"test": "echo \"Error: no test specified\""
},
"repository": {
"type": "git",
"url": "https://github.com/Escape-Technologies/graphql-armor.git",
"directory": "examples/apollo"
},
"author": "Escape Technologies SAS",
"license": "MIT",
"bugs": {
"url": "https://github.com/Escape-Technologies/graphql-armor/issues"
},
"homepage": "https://github.com/Escape-Technologies/graphql-armor",
"dependencies": {
"@apollo/gateway": "2.11.6",
"@apollo/server": "^5.2.0",
"@escape.tech/graphql-armor": "*",
"body-parser": "^2.2.0",
"express": "5.1.0",
"graphql": "16.11.0",
"graphql-tag": "^2.12.6",
"reflect-metadata": "0.2.2",
"rxjs": "7.8.2",
"source-map-support": "0.5.21",
"ts-morph": "26.0.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.6",
"@types/express": "5.0.3",
"@types/node": "24.0.3",
"nodemon": "3.1.10",
"ts-node": "10.9.2",
"ts-node-dev": "2.0.0",
"typescript": "5.8.3"
}
}