-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.21 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
{
"author": "Jovana Jovanovska",
"name": "gatsby-starter-styled-components",
"description": "Gatsby starter with modular file structure and support for Styled Components",
"version": "1.0.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "gatsby develop",
"build": "gatsby build",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint src/**/*.js --fix",
"serve": "gatsby serve",
"clean": "gatsby clean"
},
"dependencies": {
"babel-plugin-styled-components": "^1.11.1",
"gatsby": "^2.24.50",
"gatsby-image": "^2.4.21",
"gatsby-plugin-react-helmet": "^3.3.12",
"gatsby-plugin-sharp": "^2.6.39",
"gatsby-plugin-styled-components": "^3.3.12",
"gatsby-source-filesystem": "^2.3.34",
"gatsby-transformer-sharp": "^2.5.17",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^6.1.0",
"react-icons": "^3.11.0",
"styled-components": "^5.2.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"prettier": "^2.1.0"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
}
}