forked from Ekwuno/jamstack-hackathon-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.51 KB
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
{
"name": "jamstack-hackathon-starter",
"description": "A starter to make JAMstack apps, not just sites with Gatsby + Netlify Functions + Netlify Identity",
"version": "1.0.0",
"author": "swyx <swyx@dontemailme.com>",
"dependencies": {
"gatsby": "^2.0.76",
"gatsby-image": "^2.0.20",
"gatsby-plugin-create-client-paths": "^2.0.2",
"gatsby-plugin-manifest": "^2.0.9",
"gatsby-plugin-offline": "^2.0.16",
"gatsby-plugin-react-helmet": "^3.0.2",
"gatsby-plugin-sharp": "^2.0.14",
"gatsby-source-filesystem": "^2.0.8",
"gatsby-transformer-sharp": "^2.1.8",
"netlify-identity-widget": "^1.4.14",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-helmet": "^5.2.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"develop": "gatsby develop",
"start": "run-p start:**",
"start:app": "npm run develop",
"start:lambda": "netlify-lambda serve src/lambda",
"build": "run-p build:**",
"build:app": "gatsby build",
"build:lambda": "netlify-lambda build src/lambda",
"format": "prettier --write \"src/**/*.js\"",
"test": "echo \"Write tests! -> https://gatsby.app/unit-testing\""
},
"devDependencies": {
"http-proxy-middleware": "^0.19.0",
"netlify-lambda": "^1.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.14.2"
},
"repository": {
"type": "git",
"url": "https://github.com/sw-yx/jamstack-hackathon-starter"
},
"bugs": {
"url": "https://github.com/sw-yx/jamstack-hackathon-starter/issues"
}
}