-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
44 lines (44 loc) · 1.23 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
{
"name": "ecommerce-gatsby-tutorial",
"private": true,
"description": "Accept payments in your Gatsby site using Stripe Checkout.",
"version": "0.1.0",
"author": "@thorwebdev",
"dependencies": {
"@stripe/stripe-js": "^1.0.1",
"gatsby": "^2.19.19",
"gatsby-image": "^2.2.41",
"gatsby-plugin-manifest": "^2.2.41",
"gatsby-plugin-offline": "^2.2.10",
"gatsby-plugin-react-helmet": "^3.1.22",
"gatsby-plugin-sharp": "^2.4.5",
"gatsby-source-filesystem": "^2.1.48",
"gatsby-source-stripe": "^3.1.1",
"gatsby-transformer-sharp": "^2.3.14",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"start": "npm run develop",
"format": "prettier --write \"src/**/*.js\"",
"test": "echo \"Write tests! -> https://gatsby.app/unit-testing\""
},
"devDependencies": {
"prettier": "^1.19.1"
},
"repository": {
"type": "git",
"url": "https://github.com/thorsten-stripe/ecommerce-gatsby-tutorial"
},
"bugs": {
"url": "https://github.com/thorsten-stripe/ecommerce-gatsby-tutorial/issues"
}
}