forked from kmelve/markdown-to-sanity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.1 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
{
"name": "markdown-to-sanity",
"version": "0.1.0",
"description": "Migrate a folder of markdown files to Sanity",
"main": "src/index.js",
"scripts": {
"test": "eslint .",
"start": "node ./bin"
},
"keywords": [],
"author": "",
"license": "ISC",
"bin": {
"markdown-to-sanity": "./bin/index.js"
},
"devDependencies": {
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-config-sanity": "^0.141.5",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"prettier": "^1.18.2"
},
"dependencies": {
"@sanity/block-tools": "^0.141.5",
"@sanity/schema": "^0.141.5",
"date-fns": "^1.30.1",
"glob": "^7.1.4",
"globby": "^10.0.1",
"inquirer": "^6.5.0",
"inquirer-fuzzy-path": "^2.0.3",
"inquirer-path": "^1.0.0-beta5",
"jsdom": "^15.1.1",
"remark-extract-frontmatter": "^2.0.0",
"remark-frontmatter": "^1.3.2",
"remark-html": "^9.0.1",
"remark-parse": "^6.0.3",
"showdown": "^1.9.1",
"showdown-highlightjs-extension": "^0.1.2",
"unified": "^8.1.0",
"unified-stream": "^1.0.5",
"yaml": "^1.6.0"
}
}