-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.54 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
{
"name": "portfolio-robert-wawrzyniak",
"version": "2.0.0",
"description": "My website powered by Gatsby",
"main": "src/pages/index.js",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"start": "npm run develop",
"lint": "eslint ./src",
"setup": "node ./bin/setup.js",
"fmt": "prettier --write \"{*,src/**/*}.{js,json,md,yml,css}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/thuringia/website.git"
},
"keywords": [
"gatsby",
"starter",
"contentful",
"PWA",
"portfolio"
],
"author": "Robert Wawrzyniak",
"license": "MIT",
"bugs": {
"url": "https://github.com/thuringia/website/issues"
},
"homepage": "https://wawrob.xyz",
"dependencies": {
"@fontsource/ibm-plex-sans": "^4.5.13",
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-brands-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@styled-system/css": "^5.1.5",
"dotenv": "^16.0.3",
"envfile": "^6.18.0",
"gatsby": "^5.0.0",
"gatsby-plugin-image": "^3.0.0",
"gatsby-plugin-manifest": "^5.0.0",
"gatsby-plugin-offline": "^6.0.0",
"gatsby-plugin-sharp": "^5.0.0",
"gatsby-plugin-styled-components": "^6.0.0",
"gatsby-source-contentful": "^8.0.0",
"gatsby-transformer-remark": "^6.0.0",
"inquirer": "^9.1.4",
"lodash": "^4.17.21",
"polished": "^4.2.2",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-fontawesome": "^1.6.1",
"react-headroom": "^3.2.1",
"react-is": "^18.2.0",
"react-markdown": "^8.0.3",
"react-reveal": "^1.2.2",
"react-scroll-section": "^1.3.0",
"react-text-loop": "^2.0.1",
"react-tippy": "^1.2.2",
"styled-components": "^5.3.6",
"styled-system": "^5.1.5"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-plugin-styled-components": "^2.0.7",
"chalk": "^5.1.2",
"contentful-import": "^8.5.6",
"eslint": "8.27.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "^4.2.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"react-refresh": "^0.14.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md,yml}": [
"prettier --write"
]
}
}