-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.32 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.32 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
47
48
49
50
{
"name": "apollo-server-restrict-introspection",
"version": "0.3.0",
"description": "Restrict types exposed by apollo-server's introspection/playground.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"demo": "ts-node src/demo.ts",
"build": "tsc",
"test": "jest",
"lint": "eslint --ext js,ts src",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"apollo-server-",
"graphql",
"introspection",
"playground",
"typescript",
"javascript",
"security"
],
"author": "Andreas Brekken <andreas@brekken.com>",
"license": "MIT",
"devDependencies": {
"@types/express": "4.17.6",
"@types/jest": "25.2.1",
"@types/lru-cache": "5.1.0",
"@types/node": "13.13.4",
"@typescript-eslint/eslint-plugin": "3.6.1",
"@typescript-eslint/parser": "3.6.1",
"body-parser": "1.19.0",
"eslint": "7.4.0",
"eslint-config-airbnb-typescript": "8.0.2",
"eslint-config-airbnb-typescript-prettier": "3.1.0",
"eslint-config-prettier": "6.11.0",
"express": "4.17.1",
"graphql": "15.0.0",
"jest": "25.5.3",
"nodemon": "2.0.3",
"prettier": "2.0.5",
"ts-jest": "25.4.0",
"ts-node": "8.9.1",
"typescript": "3.8.3"
},
"dependencies": {
"apollo-server-express": ">=2",
"lru-cache": ">=5.1"
}
}