-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
129 lines (129 loc) · 3.97 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
120
121
122
123
124
125
126
127
128
129
{
"name": "@cobuildlab/cobuildlab-web",
"description": "Cobuild Lab website",
"version": "1.0.0",
"author": "Angel Lacret <[email protected]>",
"bugs": {
"url": "https://github.com/cobuildlab/cobuildlab-web/issues"
},
"dependencies": {
"@cobuildlab/gatsby-source-8base": "^1.0.6",
"@react-pdf/renderer": "1.6.9",
"assert": "^2.0.0",
"bloomer": "0.6.5",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"bulma": "0.9.3",
"core-js": "3.15.2",
"disqus-react": "1.1.1",
"dotenv": "10.0.0",
"echarts": "^5.2.1",
"echarts-for-react": "^3.0.1",
"gatsby": "3.8.1",
"gatsby-image": "3.8.0",
"gatsby-plugin-amp": "^0.2.2",
"gatsby-plugin-brotli": "^2.1.0",
"gatsby-plugin-google-gtag": "3.8.0",
"gatsby-plugin-google-tagmanager": "3.8.0",
"gatsby-plugin-image": "1.8.0",
"gatsby-plugin-mailchimp": "5.2.2",
"gatsby-plugin-manifest": "3.8.0",
"gatsby-plugin-preact": "^5.14.0",
"gatsby-plugin-react-helmet": "4.8.0",
"gatsby-plugin-sass": "4.8.0",
"gatsby-plugin-sharp": "3.8.0",
"gatsby-plugin-sitemap": "4.4.0",
"gatsby-plugin-smoothscroll": "1.2.0",
"gatsby-plugin-styled-components": "4.8.0",
"gatsby-plugin-zopfli": "2.0.0",
"gatsby-remark-component": "^1.1.3",
"gatsby-remark-copy-linked-files": "4.5.0",
"gatsby-remark-images": "5.5.0",
"gatsby-remark-responsive-iframe": "4.5.0",
"gatsby-source-filesystem": "3.8.0",
"gatsby-transformer-json": "3.8.0",
"gatsby-transformer-remark": "^4.5.0",
"gatsby-transformer-sharp": "^3.8.0",
"js-search": "^1.4.3",
"lodash": "^4.17.13",
"moment": "^2.24.0",
"node-sass": "6.0.1",
"preact": "^10.5.15",
"preact-render-to-string": "^5.1.19",
"process": "^0.11.10",
"react": "16.14.0",
"react-anchor-link-smooth-scroll": "^1.0.12",
"react-countup": "^4.3.3",
"react-dom": "16.14.0",
"react-helmet": "5.2.1",
"react-icons-kit": "^1.3.1",
"react-is": "^17.0.2",
"react-modal-video": "1.2.8",
"react-paginate": "^7.1.3",
"react-share": "4.4.0",
"react-slick": "0.28.1",
"react-spinners": "^0.4.8",
"react-sweet-progress": "^1.1.2",
"react-toastify": "^4.4.0",
"react-youtube": "^7.9.0",
"rehype-react": "^3.0.3",
"remark-html": "^13.0.1",
"slick-carousel": "1.8.1",
"stream": "0.0.2",
"stream-browserify": "^3.0.0",
"styled-components": "5.3.0",
"typeface-merriweather": "0.0.43",
"typeface-montserrat": "0.0.43",
"util": "^0.12.4"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.7",
"babel-eslint": "^10.1.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^3.6.0",
"eslint-config-react-app": "6.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsdoc": "35.4.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^2.2.1"
},
"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": {
"clean": "gatsby clean",
"dev": "gatsby develop",
"eslint": "eslint --ext .js,.jsx --fix --ignore-pattern public --ignore-pattern '!.eslintrc.js' ./src",
"test": "echo \"Error: no test specified\" && exit 1",
"develop": "gatsby develop",
"build:dev": "NODE_ENV=development gatsby build",
"build:slow": "GATSBY_CPU_COUNT=2 node --max_old_space_size=3072 ./node_modules/.bin/gatsby build",
"build": "node ./node_modules/.bin/gatsby build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
}
}