-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
35 lines (35 loc) · 1.01 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
{
"name": "gatsby-source-blogger",
"version": "1.3.1",
"description": "Gatsby source plugin for building websites using Blogger as a data source",
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source-plugin",
"blogger",
"headless-cms"
],
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"format": "prettier --single-quote --write src/gatsby-node.js",
"prepare": "npm run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__"
},
"main": "index.js",
"repository": "[email protected]:valse/gatsby-source-blogger.git",
"author": "Marco Valsecchi <[email protected]> (https://marcovalsecchi.it/)",
"license": "MIT",
"dependencies": {
"googleapis": "^100.0.0",
"rehype-parse": "^7.0.1",
"rehype-remark": "^8.1.1",
"remark-stringify": "^8.1.1",
"unified": "^9.2.2"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"prettier": "^2.6.2"
}
}