forked from giacomocerquone/graphcms-markdown-migrator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.63 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
{
"name": "graphcms-markdown-migrator",
"version": "0.3.2",
"description": "A CLI tool to automate the migration from markdown files to GraphCMS (useful for gatsby blogs for example and everything else)",
"main": "index.js",
"scripts": {
"start": "./index.js --path ./example -u https://api-eu-central-1.graphcms.com/v2/ckml7qpvfgf6n01z28xbq03j4/master",
"test": "echo \"Error: no test specified\" && exit 1",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
},
"bin": {
"md-to-graph": "./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/giacomocerquone/graphcms-markdown-migrator.git"
},
"keywords": [
"graphcms",
"gatsby",
"ssg",
"jamstack",
"next.js",
"markdown",
"migrator"
],
"author": "Giacomo Cerquone <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/giacomocerquone/graphcms-markdown-migrator/issues"
},
"homepage": "https://github.com/giacomocerquone/graphcms-markdown-migrator#readme",
"dependencies": {
"@graphcms/management": "^0.0.19",
"chalk": "^4.1.0",
"form-data": "^4.0.0",
"glob": "^7.1.6",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
"gray-matter": "^4.0.2",
"node-fetch": "^2.6.1",
"ora": "^5.3.0",
"prompts": "^2.4.0",
"string-sanitizer": "^1.1.1",
"winston": "^3.3.3",
"yargs": "^16.2.0"
},
"devDependencies": {
"eslint": "^7.21.0",
"standard-version": "^9.1.0"
}
}