-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
46 lines (46 loc) · 1.81 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
{
"name": "graphql-compose.github.io",
"version": "1.0.0",
"private": true,
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"ts-node": "ts-node",
"start": "yarn fetch-docs && cd website && yarn fetch-contributors && yarn start",
"build": "yarn fetch-docs && cd website && yarn fetch-contributors && yarn build",
"version": "cd website && yarn docusaurus-version",
"docusaurus-publish": "yarn fetch-docs && cd website && yarn fetch-contributors && yarn docusaurus-publish",
"fetch-docs": "yarn fetch-graphql-compose && mkdirp ./docs && cp -Rv ./tmp/graphql-compose/docs/* ./docs/ && yarn gen-api",
"fetch-graphql-compose": "(git clone https://github.com/graphql-compose/graphql-compose.git ./tmp/graphql-compose) || (cd ./tmp/graphql-compose && git fetch origin master && git reset --hard origin/master && cd ../../)",
"gen-api": "ts-node ./gen-api/write-docs-api-files.ts && ts-node ./gen-api/update-version-files.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphql-compose/graphql-compose.github.io.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphql-compose/graphql-compose.github.io/issues"
},
"homepage": "https://github.com/graphql-compose/graphql-compose.github.io#readme",
"devDependencies": {
"@types/graphql": "^14.0.7",
"@types/jest": "^24.0.11",
"@types/mkdirp": "^0.5.2",
"@types/node": "^11.12.0",
"@types/prettier": "^1.16.1",
"@typescript-eslint/eslint-plugin": "^1.5.0",
"eslint": "^5.15.3",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^24.5.0",
"mkdirp": "^0.5.1",
"prettier": "^1.16.4",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.3",
"typescript": "^3.3.4000"
}
}