forked from thinhle-agilityio/gatsby-source-apiserver
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"name": "gatsby-source-apiserver",
"version": "2.1.7",
"description": "Gatsby plugin to handle any third party api data intake.",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir . --ignore __tests__",
"watch": "babel -w src --out-dir . --ignore __tests__",
"prepublish": "cross-env NODE_ENV=production npm run build"
},
"homepage": "https://github.com/tonicpow/gatsby-source-apiserver#readme",
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source-plugin"
],
"author": "Thinh Le <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tonicpow/gatsby-source-apiserver.git"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^5.1.4"
},
"dependencies": {
"axios": "^0.21.0",
"babel-cli": "^6.26.0",
"babel-runtime": "^6.26.0",
"chalk": "^2.3.2",
"deep-map-keys": "^1.2.0",
"json-stringify-safe": "^5.0.1",
"kind-of": "6.0.3",
"minimist": "1.2.3",
"nanoid": "^1.0.2"
}
}