-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
42 lines (42 loc) · 968 Bytes
/
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
{
"name": "gatsby-plugin-snipcart",
"version": "1.1.2",
"description": "A Gatsby plugin ecommerce with Snipcart.",
"keywords": [
"snipcart",
"gatsby-plugin",
"gatsby"
],
"main": "gatsby-ssr.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/escaladesports/gatsby-plugin-snipcart.git"
},
"author": "Kennedy Rose <krose@escaladesports.com>",
"scripts": {
"lint": "standard",
"build": "babel src --out-dir ."
},
"peerDependencies": {
"react": "^15.0.0-0 || ^16.0.0-0"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"react": "^15.6.1",
"standard": "^13.1.0"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"gatsby-ssr.js",
"gatsby-browser.js",
"example/.cache",
"example/public"
]
}
}