forked from dabit3/gatsby-auth-starter-aws-amplify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.48 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
51
52
53
{
"name": "gatsby-auth-starter-aws",
"description": "Gatsby authentication starter for AWS Amplify",
"author": "Nader Dabit <[email protected]>",
"version": "1.1.0",
"license": "MIT",
"keywords": [
"gatsby",
"starter",
"AWS",
"Amplify"
],
"dependencies": {
"aws-amplify": "^3.0.20",
"aws-amplify-react": "^4.1.19",
"gatsby": "^2.23.12",
"gatsby-image": "^2.4.9",
"gatsby-plugin-manifest": "^2.4.14",
"gatsby-plugin-react-helmet": "^3.3.6",
"gatsby-plugin-robots-txt": "^1.5.1",
"gatsby-plugin-sharp": "^2.6.14",
"gatsby-remark-images": "^3.3.20",
"gatsby-source-filesystem": "^2.3.14",
"gatsby-transformer-remark": "^2.8.26",
"gatsby-transformer-sharp": "^2.5.7",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^6.1.0"
},
"scripts": {
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"develop": "gatsby develop",
"build": "gatsby build",
"format": "prettier --write src/**/*.{js,jsx,json}",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\"",
"provision": "amplify push",
"deploy": "amplify publish",
"delete": "amplify delete"
},
"devDependencies": {
"prettier": "2.0.5"
},
"repository": {
"type": "git",
"url": "https://github.com/dabit3/gatsby-auth-starter-aws-amplify"
},
"bugs": {
"url": "https://github.com/dabit3/gatsby-auth-starter-aws-amplify/issues"
}
}