generated from hackforla/.github-hackforla-base-repo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.4 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
{
"name": "gatsby-source-gdocs2md",
"version": "1.0.0",
"description": "Gatsby plugin transforming Google Docs to markdown files",
"repository": "https://github.com/icaraps/gatsby-source-gdocs2md",
"license": "MIT",
"main": "index.js",
"dependencies": {
"@octokit/rest": "^19.0.5",
"@swc/core": "^1.3.25",
"@swc/jest": "^0.2.24",
"@types/json2md": "^1.5.1",
"@types/yamljs": "^0.2.31",
"axios": "^0.27.2",
"dotenv": "^8.2.0",
"fs-extra": "^10.1.0",
"github-api-signature": "^2.0.1",
"google-oauth2-env-vars": "^1.3.0",
"googleapis": "67.1.1",
"js-base64": "^3.7.3",
"json2md": "^1.10.0",
"lodash": "^4.17.21",
"ts-jest": "^29.0.3",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@types/lodash": "^4.14.194",
"babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
"jest": "^29.0.1"
},
"peerDependencies": {
"dotenv": "^8.2.0",
"gatsby": "^2.0.0 || ^3.0.0"
},
"bin": {
"gatsby-source-gdocs2md": "./generate-token.js"
},
"scripts": {
"build": "babel src --out-dir out/gdocs2md --ignore \"**/__tests__\"",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore \"**/__tests__\"",
"jest": "jest --config=jest.config.js --verbose"
},
"engines": {
"node": ">=12.13.0"
}
}