-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
50 lines (50 loc) · 1.45 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-magento2",
"description": "GatsbyJS plugin which fetches storefront data from the Magento2 GraphQL endpoint",
"version": "2.4.6",
"author": "Stanislav Smovdorenko <stan.sm@mobelop.com>",
"bugs": {
"url": "https://github.com/mobelop/gatsby-source-magento2/issues"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"apollo-utilities": "^1.3.4",
"cross-env": "^7.0.3",
"cross-fetch": "3.0.6",
"gatsby-source-filesystem": "^2.0.10",
"graphql": "^15.3.0",
"graphql-request": "^3.0",
"graphql-tag": "^2.11.0",
"subscriptions-transport-ws": "^0.9.18",
"ws": "^7.3.1"
},
"devDependencies": {
"@babel/cli": "^7.10",
"@babel/core": "^7.10",
"@babel/helper-plugin-utils": "^7.10.4",
"babel-jest": "^26.2",
"babel-preset-gatsby-package": "^0.11.0",
"jest": "^26.2"
},
"homepage": "https://github.com/mobelop/gatsby-source-magento2#readme",
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source-plugin",
"magento",
"magento2"
],
"license": "MIT",
"peerDependencies": {
"gatsby": ">2.0.60",
"graphql": "^14.5"
},
"repository": "https://github.com/mobelop/gatsby-source-magento2",
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
"prepublish": "npm run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__",
"test": "jest"
}
}