-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.23 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
{
"name": "letsby",
"private": true,
"description": "Gatsby Blog Start",
"version": "0.1.0",
"author": "iduk <iduk.design@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"scripts": {
"build": "gatsby build",
"dev": "GATSBY_GRAPHQL_IDE=playground gatsby develop -H 0.0.0.0",
"start": "gatsby develop -H 0.0.0.0",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,css,scss}\"",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"dependencies": {
"babel-plugin-styled-components": "^2.0.7",
"classnames": "^2.3.1",
"dotenv": "^16.0.2",
"gatsby": "^4.21.1",
"gatsby-cli": "^4.21.0",
"gatsby-image": "^3.11.0",
"gatsby-plugin-image": "^2.21.0",
"gatsby-plugin-manifest": "^4.21.0",
"gatsby-plugin-minify-classnames": "^4.1.3",
"gatsby-plugin-postcss": "^5.21.0",
"gatsby-plugin-purgecss": "^6.1.2",
"gatsby-plugin-remote-images": "^3.4.0",
"gatsby-plugin-sass": "^5.21.0",
"gatsby-plugin-sharp": "^4.21.0",
"gatsby-plugin-styled-components": "^5.21.0",
"gatsby-remark-copy-linked-files": "^5.22.0",
"gatsby-remark-images": "^6.22.0",
"gatsby-source-filesystem": "^4.21.1",
"gatsby-source-giphy-random": "^1.0.4",
"gatsby-source-giphy-trending": "^1.0.1",
"gatsby-transformer-remark": "^5.21.0",
"gatsby-transformer-sharp": "^4.21.0",
"lodash": "^4.17.21",
"prop-types": "^15.8.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"resolve-url-loader": "^5.0.0",
"styled-components": "^5.3.5"
},
"devDependencies": {
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.16",
"postcss-import": "^14.1.0",
"postcss-preset-env": "^7.8",
"prettier": "^2.7.1",
"sass": "^1.54.5"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"eslint --fix",
"prettier --single-quote --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"gatsby"
],
"license": "0BSD"
}