-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "gatsby-source-harperdb",
"version": "1.0.2",
"description": "A Gatsby source plugin to fetch data from HarperDB.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/atapas/gatsby-source-harperdb.git"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"harperdb"
],
"author": "Tapas Adhikary <[email protected]> (https://tapasadhikary.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/atapas/gatsby-source-harperdb/issues"
},
"homepage": "https://github.com/atapas/gatsby-source-harperdb#readme",
"dependencies": {
"@babel/runtime": "^7.8.7",
"axios": "^0.21.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"babel-preset-gatsby-package": "^0.3.1",
"cross-env": "^5.2.1"
},
"peerDependencies": {
"gatsby": "^3.0.0"
},
"scripts": {
"build": "babel src --out-dir .",
"prepare": "cross-env NODE_ENV=production npm run build"
},
"engines": {
"node": ">=10.13.0"
}
}