-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.55 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": "felix-portfolio-page",
"version": "2.5.2",
"description": "My personal portfolio!",
"main": "index.js",
"scripts": {
"build": "gatsby clean && gatsby build",
"develop": "gatsby clean && gatsby develop",
"start": "yarn develop",
"serve": "yarn build && gatsby serve -p 9000",
"lint": "eslint ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EmaSuriano/gatsby-starter-mate.git"
},
"keywords": [
"felix",
"wielander",
"portfolio",
"PWA",
"projects",
"about",
"computer scientist",
"informatics"
],
"author": "Felix Wielander",
"license": "MIT",
"bugs": {
"url": "https://github.com/EmaSuriano/gatsby-starter-mate/issues"
},
"homepage": "https://github.com/EmaSuriano/gatsby-starter-mate#readme",
"dependencies": {
"@rebass/preset": "^4.0.5",
"@tippy.js/react": "^3.1.1",
"dotenv": "^8.2.0",
"emotion-theming": "^10.0.27",
"envfile": "^5.2.0",
"gatsby": "2.32.4",
"gatsby-image": "^2.4.5",
"gatsby-plugin-canonical-urls": "^2.3.10",
"gatsby-plugin-google-analytics": "^2.3.2",
"gatsby-plugin-manifest": "^2.4.3",
"gatsby-plugin-offline": "^2.0.25",
"gatsby-plugin-preload-link-crossorigin": "^1.0.2",
"gatsby-plugin-react-helmet": "^3.3.1",
"gatsby-plugin-sharp": "^2.6.9",
"gatsby-plugin-styled-components": "^3.3.2",
"gatsby-plugin-web-font-loader": "^1.0.4",
"gatsby-source-filesystem": "^2.3.8",
"gatsby-source-medium": "^2.3.2",
"gatsby-transformer-remark": "^2.8.13",
"gatsby-transformer-sharp": "^2.5.3",
"inquirer": "^7.0.4",
"prop-types": "^15.6.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-fontawesome": "^1.6.1",
"react-headroom": "^3.0.0",
"react-helmet": "^6.0.0",
"react-markdown": "^4.3.1",
"react-reveal": "^1.2.2",
"react-scroll-section": "^2.0.0",
"react-text-loop": "^2.0.1",
"rebass": "^4.0.7",
"styled-components": "^5.1.0"
},
"devDependencies": {
"chalk": "^4.1.0",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"start-server-and-test": "^1.12.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write"
]
}
}