forked from danrasmuson/site
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.46 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "Serverless",
"description": "Serverless Website",
"version": "1.0.0",
"dependencies": {
"algoliasearch": "^3.30.0",
"axios": "^0.18.0",
"babel-eslint": "^8.2.6",
"clipboard": "^2.0.1",
"dotenv": "^6.0.0",
"eslint": "^5.3.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-react": "^7.10.0",
"gatsby": "^1.9.277",
"gatsby-link": "^1.6.46",
"gatsby-plugin-favicon": "^2.1.1",
"gatsby-plugin-react-helmet": "^2.0.11",
"gatsby-plugin-react-next": "^1.0.11",
"gatsby-plugin-styled-components": "^2.0.11",
"localforage": "^1.7.2",
"react-ga": "^2.5.3",
"react-helmet": "^5.2.0",
"react-instantsearch-dom": "^5.2.3",
"remark-autolink-headings": "^5.0.0",
"remark-highlight.js": "^5.0.0",
"remark-slug": "^4.2.3",
"serverless-design-system": "0.0.2-p2",
"styled-components": "^3.3.3",
"url": "^0.11.0",
"url-loader": "^1.0.1"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build && mv public dist",
"buildprod": "npm run syncProd && npm run prepareContent && gatsby build && mv public dist",
"develop": "gatsby develop",
"format": "prettier --write 'src/**/*.js'",
"lint": "eslint ./src/ --ext .js --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"watch:blog": "node scripts/blog/watch.js",
"components": "npm run transpile -- --watch",
"prepareContent": "node scripts/docs && node scripts/blog && node scripts/build-config",
"dev": "npm run syncProd && npm run prepareContent && gatsby develop",
"syncLocal": "npm run postinstall",
"syncProd": "npm run syncProd:Blog && npm run syncProd:Docs",
"syncProd:Blog": "node scripts/blog/sync-blog-remote.js",
"syncProd:Docs": "node scripts/docs/sync-docs-remote.js",
"prebuild": "npm run prepareContent",
"postbuildprod": "node scripts/redirects.js",
"postbuild": "node scripts/redirects.js"
},
"devDependencies": {
"async": "^2.6.1",
"download": "^7.1.0",
"fs-extra": "^7.0.0",
"gatsby-plugin-root-import": "^1.0.0",
"git-branch": "^2.0.1",
"gray-matter": "^4.0.1",
"node-dir": "^0.1.17",
"prettier": "^1.13.7",
"react-masonry-css": "^1.0.11",
"remark-html": "^8.0.0",
"remark-parse": "^5.0.0",
"unified": "^7.0.0",
"yamljs": "^0.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
}
}