-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 1.17 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
{
"name": "developer-docs",
"version": "1.0.0",
"description": "The most advanced technical interview and assessment platform.",
"main": "",
"scripts": {
"build": "rm -rf docs/graphql/types && graphqldoc --force",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "python -m serve_docs 8000",
"prettify-webhooks": "prettier --write docs/webhooks"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeSignal/developer-docs.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodeSignal/developer-docs/issues"
},
"homepage": "https://github.com/CodeSignal/developer-docs#readme",
"dependencies": {
"graphqldoc": "^2.5.2"
},
"graphqldoc": {
"endpoint": "https://app.codesignal.com/graphql",
"output": "./docs/graphql/types",
"title": "CodeSignal GraphQL API",
"favicon": "<link rel=\"icon\" type=\"image/png\" href=\"/images/favicon.png\" sizes=\"32x32\"/>",
"logo": "<a href=\"https://codesignal.com\" target=\"_blank\" style=\"display:block;\"><img src=\"/images/logo.png\" width=\"200\" /></a>"
},
"devDependencies": {
"prettier": "^2.8.4"
}
}