forked from 2fd/graphdoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.87 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
{
"name": "graphdoc",
"version": "2.4.0",
"description": "Static page generator for documenting GraphQL Schema",
"main": "bin/graphdoc",
"bin": {
"graphdoc": "./bin/graphdoc.js"
},
"scripts": {
"sass": "node-sass --output-style compressed template/slds/styles/graphdoc.scss > template/slds/styles/graphdoc.css",
"compile": "tsc -p .",
"declaration": "tsc -d -p tsconfig.json",
"readme": "tsc -p . && node ./README.js",
"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/kickstarter/graphdoc.git"
},
"keywords": [
"graphql",
"documentation"
],
"author": "Fede Ramirez <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/2fd/graphdoc/issues"
},
"jest": {
"testRegex": "\\.(test|spec)\\.js$",
"moduleFileExtensions": [
"js",
"jsx",
"json",
"node"
]
},
"homepage": "https://github.com/2fd/graphdoc#readme",
"devDependencies": {
"@salesforce-ux/design-system": "2.2.1",
"@types/bluebird": "^3.5.28",
"@types/chai": "^3.4.34",
"@types/fs-extra": "0.0.32",
"@types/glob": "^5.0.30",
"@types/graphql": "^0.8.6",
"@types/jest": "^18.1.1",
"@types/marked": "0.0.27",
"@types/mocha": "^2.2.32",
"@types/mustache": "^0.8.28",
"@types/node": "^6.14.9",
"@types/request": "^2.48.3",
"@types/striptags": "^3.1.1",
"chai": "^3.5.0",
"express": "^4.17.1",
"express-graphql": "^0.8.0",
"handlebars": "^4.6.0",
"jest": "^24.9.0",
"node-sass": "^4.13.0",
"prettier": "^1.18.2",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.2"
},
"dependencies": {
"@2fd/command": "^1.1.2",
"bluebird": "^3.7.1",
"deepmerge": "^2.0.1",
"fs-extra": "^0.30.0",
"glob": "^7.1.6",
"graphql": "^14.5.8",
"marked": "^0.7.0",
"mustache": "^2.2.1",
"request": "^2.88.0",
"slug": "^0.9.1",
"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": "./"
}
}