-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
82 lines (82 loc) · 2.25 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
{
"name": "kickoff-gatsbyjs",
"description": "A react starting point using GatsbyJS",
"version": "2.0.1",
"author": "Parminder Klair",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/perminder-klair/kickoff-gatsbyjs.git"
},
"bugs": {
"url": "https://github.com/perminder-klair/kickoff-gatsbyjs/issues"
},
"homepage": "https://github.com/perminder-klair/kickoff-gatsbyjs#readme",
"scripts": {
"start": "npm run dev",
"dev": "gatsby develop",
"serve": "gatsby serve",
"build": "gatsby build",
"lint": "eslint --fix --ext .jsx,.js src/**/*.js src/**/**/*.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint"
}
},
"dependencies": {
"@headlessui/react": "^1.4.1",
"@heroicons/react": "^1.0.5",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"dayjs": "^1.10.7",
"gatsby": "^4.1.0",
"gatsby-image": "^3.11.0",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-google-analytics": "^4.1.0",
"gatsby-plugin-image": "^2.1.0",
"gatsby-plugin-lodash": "^5.1.0",
"gatsby-plugin-manifest": "^4.1.0",
"gatsby-plugin-mdx": "^3.1.0",
"gatsby-plugin-offline": "^5.1.0",
"gatsby-plugin-react-helmet": "^5.1.0",
"gatsby-plugin-sharp": "^4.1.0",
"gatsby-plugin-styled-components": "^5.1.0",
"gatsby-remark-images": "^6.1.0",
"gatsby-source-filesystem": "^4.1.0",
"gatsby-transformer-sharp": "^4.1.0",
"lodash": "^4.17.21",
"polished": "^4.1.3",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"styled-components": "^5.3.3",
"tailwindcss": "^2.2.19",
"twin.macro": "^2.8.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"husky": "^7.0.4",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1"
},
"keywords": [
"npm",
"node",
"gatsbyjs",
"javascript",
"graphql",
"graphql",
"reactjs",
"boilerplate"
]
}