-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.25 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
{
"name": "@gijsbotje/md-to-prismic",
"version": "0.0.3",
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"files": [
"bin/",
"src/"
],
"bin": {
"md-to-prismic": "./bin/md-to-prismic.cjs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node src/index.js",
"start:dev": "nodemon --exec babel-node src/index.js --file src/blog.md",
"prepare": "tsc"
},
"dependencies": {
"@gijsbotje/md-to-prismic-richtext": "^0.0.6",
"@tsconfig/node16": "^1.0.4",
"@types/node": "^20.1.4",
"chalk": "^5.2.0",
"esm": "^3.2.25",
"gray-matter": "^4.0.3",
"inquirer": "^9.2.0",
"inquirer-file-tree-selection-prompt": "^2.0.5",
"jszip": "^3.10.1",
"listr": "^0.14.3",
"minimist": "^1.2.8",
"typescript": "^5.0.4",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.21.8",
"@babel/node": "^7.20.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.21.5",
"@types/inquirer": "^9.0.3",
"@types/listr": "^0.14.4",
"@types/yargs": "^17.0.24",
"nodemon": "^2.0.22",
"rimraf": "^5.0.0"
}
}