-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.26 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
{
"name": "contentful-starter-gatsby-blog",
"description": "Contentful Gatsby Starter Blog",
"private": true,
"version": "1.0.0",
"author": "Contentful <[email protected]>",
"bugs": {
"url": "https://github.com/contentful/starter-gatsby-blog/issues"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"babel-preset-gatsby": "^1.4.0",
"gatsby": "^2.32.13",
"gatsby-image": "^2.11.0",
"gatsby-plugin-react-helmet": "^3.10.0",
"gatsby-plugin-sharp": "^2.14.4",
"gatsby-source-contentful": "^2.3.56",
"gatsby-transformer-remark": "^2.16.1",
"gatsby-transformer-sharp": "^2.12.1",
"gh-pages": "^3.1.0",
"lodash": "^4.17.21",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-helmet": "^6.1.0",
"react-media": "^1.10.0",
"react-page-scroller": "^2.1.0",
"react-use": "^17.2.4",
"react-vis-network-graph": "^3.0.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"contentful-import": "^7.9.42",
"eslint": "^7.30.0",
"eslint-plugin-react": "^7.24.0",
"netlify-cli": "^2.71.0",
"stylelint": "^13.13.1",
"stylelint-color-format": "^1.1.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"vis-network": "^9.0.4"
},
"engines": {
"node": ">=10.13.0"
},
"homepage": "https://github.com/contentful/starter-gatsby-blog#readme",
"keywords": [
"gatsby",
"contentful",
"starter"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/contentful/starter-gatsby-blog.git"
},
"scripts": {
"dev": "gatsby develop",
"build": "gatsby build",
"heroku-postbuild": "gatsby build",
"serve": "gatsby serve",
"netlify:login": "netlify login",
"netlify:deploy": "netlify deploy -d public -p",
"lint:code": "eslint --fix src/**/*.ts src/**/*.tsx",
"lint:styles": "stylelint --fix src/**/*.module.css src/**/*.css",
"lint": "yarn lint:code && yarn lint:styles"
}
}