forked from jwlawrence/wordpress-api-to-sanity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 818 Bytes
/
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
{
"name": "wordpress-api-to-sanity",
"version": "0.0.1",
"description": "Migrate data from WP-API to Sanity.io",
"main": "index.js",
"author": "Joshua Lawrence",
"license": "MIT",
"private": false,
"dependencies": {
"@sanity/block-tools": "^1.149.4",
"@sanity/client": "^1.149.7",
"@sanity/schema": "^1.149.4",
"dotenv": "^8.2.0",
"husky": "^4.2.5",
"jsdom": "^16.2.2",
"lint-staged": "^10.1.3",
"node-fetch": "^2.6.1",
"prettier": "^2.0.4",
"sanitize-html": "^1.22.1"
},
"scripts": {
"start": "node index.js",
"output": "node index.js > output.ndjson"
},
"engines": {
"node": ">= 12.*"
},
"lint-staged": {
"*.{js,json}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}