-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
119 lines (119 loc) · 3.69 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "memex-webiste",
"description": "Starter Gatsby Blog",
"version": "1.0.0",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby-starter-blog/issues"
},
"private": true,
"workspaces": [
".",
"common",
"reusecore"
],
"dependencies": {
"@glidejs/glide": "^3.4.1",
"@redq/reuse-modal": "^1.2.4",
"babel-plugin-styled-components": "^1.10.6",
"bootstrap": "^4.3.1",
"common": "^3.2.0",
"detect-browser": "^4.8.0",
"dotenv": "^8.0.0",
"firebase": "^7.2.2",
"gatsby": "^2.17.12",
"gatsby-image": "^2.2.6",
"gatsby-plugin-crisp-chat": "^3.2.2",
"gatsby-plugin-layout": "^1.0.3",
"gatsby-plugin-mailchimp": "^5.1.2",
"gatsby-plugin-manifest": "^2.0.5",
"gatsby-plugin-offline": "^2.0.5",
"gatsby-plugin-react-helmet": "^3.0.0",
"gatsby-plugin-robots-txt": "^1.5.0",
"gatsby-plugin-sass": "^2.1.20",
"gatsby-plugin-sharp": "^2.0.6",
"gatsby-plugin-styled-components": "^3.1.12",
"gatsby-plugin-typography": "^2.2.0",
"gatsby-remark-copy-linked-files": "^2.0.5",
"gatsby-remark-images": "^2.0.4",
"gatsby-remark-prismjs": "^3.0.0",
"gatsby-remark-responsive-iframe": "^2.0.5",
"gatsby-remark-smartypants": "^2.0.5",
"gatsby-source-filesystem": "^2.0.2",
"gatsby-transformer-json": "^2.2.17",
"gatsby-transformer-remark": "^2.1.6",
"gatsby-transformer-sharp": "^2.1.3",
"jquery": "^1.12.4",
"lerna": "^3.18.4",
"lodash": "^4.17.11",
"node-sass": "^4.13.0",
"prismjs": "^1.15.0",
"rc-drawer": "^3.0.2",
"rc-tabs": "^9.7.0",
"react": "^16.11.0",
"react-accessible-accordion": "^3.0.1",
"react-anchor-link-smooth-scroll": "^1.0.12",
"react-dom": "^16.11.0",
"react-firebaseui": "^4.0.0",
"react-helmet": "^5.2.0",
"react-icons": "^3.7.0",
"react-icons-kit": "^1.3.1",
"react-image-gallery": "^0.9.1",
"react-particles-js": "^2.7.0",
"react-reveal": "^1.2.2",
"react-scrollspy": "^3.4.0",
"react-stickynode": "^2.1.1",
"react-tweet-embed": "^1.3.1",
"react-typography": "^0.16.13",
"reusecore": "0.1.0",
"styled-components": "^4.3.2",
"styled-system": "^4.2.4",
"tslib": "^1.10.0",
"typeface-inter": "^3.7.0",
"typeface-merriweather": "0.0.43",
"typeface-montserrat": "0.0.43",
"typeface-poppins": "^0.0.72",
"typeface-pt-sans": "0.0.72",
"typography": "^0.16.17"
},
"devDependencies": {
"@types/node": "^12.11.7",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.3",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-config-react-app": "^5.0.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"gatsby-plugin-postcss": "^2.1.13",
"gatsby-plugin-typescript": "^2.1.15",
"gh-pages": "^1.2.0",
"postcss-import": "^12.0.1",
"postcss-variables": "^1.1.1",
"prettier": "^1.14.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby-starter-blog#readme",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/gatsbyjs/gatsby-starter-blog.git"
},
"scripts": {
"bootstrap": "lerna run --parallel dev",
"dev": "gatsby develop",
"lint": "./node_modules/.bin/eslint --ext .js,.jsx --ignore-pattern public .",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write '**/*.js'",
"develop": "gatsby develop",
"start": "npm run develop",
"build": "gatsby build",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"beta": "gatsby build && netlify deploy",
"fix-semi": "eslint --quiet --ignore-pattern node_modules --ignore-pattern public --parser babel-eslint --no-eslintrc --rule '{\"semi\": [2, \"never\"], \"no-extra-semi\": [2]}' --fix gatsby-node.js"
}
}