-
Notifications
You must be signed in to change notification settings - Fork 135
/
package.json
89 lines (89 loc) · 2.74 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
{
"name": "@2fd/graphdoc",
"version": "2.4.0",
"description": "Static page generator for documenting GraphQL Schema",
"main": "bin/graphdoc",
"bin": {
"graphdoc": "./bin/graphdoc.js"
},
"scripts": {
"compile": "tsc -p .",
"declaration": "tsc -d -p tsconfig.json",
"readme": "ts-node ./README.ts",
"doc.github": "node bin/graphdoc.js -c example.github.json -f -v",
"doc.pokemon": "node bin/graphdoc.js -c example.pokemon.json -f -v",
"doc.shopify": "node bin/graphdoc.js -c example.shopify.json -f -v",
"doc.scaphold": "node bin/graphdoc.js -c example.scaphold.json -f -v",
"doc.starwars": "node bin/graphdoc.js -c example.starWars.json -f -v",
"doc.starwars-js": "node bin/graphdoc.js -c example.starWars-js.json -f -v",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/2fd/graphdoc.git"
},
"keywords": [
"graphql",
"documentation"
],
"author": "Fede Ramirez <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/2fd/graphdoc/issues"
},
"jest": {
"preset": "ts-jest",
"testRegex": "\\.(test|spec)\\.ts$"
},
"homepage": "https://github.com/2fd/graphdoc#readme",
"devDependencies": {
"@salesforce-ux/design-system": "2.2.1",
"@types/bluebird": "^3.0.37",
"@types/chai": "^4.2.14",
"@types/fs-extra": "0.0.32",
"@types/glob": "^7.1.3",
"@types/graphql": "^0.8.6",
"@types/jest": "^18.1.1",
"@types/marked": "1.2.1",
"@types/mocha": "^8.0.4",
"@types/mustache": "^0.8.28",
"@types/node": "^14.14.10",
"@types/request": "^2.48.5",
"@types/striptags": "^3.1.1",
"chai": "^3.5.0",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"handlebars": "^4.7.6",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"ts-jest": "^24.3.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.7"
},
"dependencies": {
"@2fd/command": "^1.1.2",
"acorn": "^8.0.4",
"bluebird": "^3.5.5",
"deepmerge": "^4.2.2",
"fs-extra": "^9.0.1",
"glob": "^7.1.0",
"graphql": "^15.4.0",
"lodash": "^4.17.20",
"marked": "^1.2.5",
"mustache": "^4.1.0",
"request": "^2.88.0",
"slug": "^4.0.2",
"striptags": "^3.1.1",
"word-wrap": "^1.2.1"
},
"graphdoc": {
"ga": "UA-54154153-2",
"graphiql": "https://developer.github.com/early-access/graphql/explorer/",
"logo": "<a href=\"https://developer.github.com/early-access/graphql\" target=\"_blank\" style=\"display:block;padding:1rem 3rem\"><img src=\"https://assets-cdn.github.com/images/modules/logos_page/GitHub-Logo.png\" /></a>",
"schemaFile": "./test/github.json",
"output": "./gh-pages/github",
"baseUrl": "./"
}
}