generated from pixel-point/gatsby-tailwind-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.45 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
{
"name": "gatsby-tailwind-starter",
"description": "A simple starter to get up and developing quickly with Gatsby",
"version": "0.1.0",
"author": "Alex Barashkov <[email protected]>",
"scripts": {
"start": "npm run develop",
"develop": "gatsby develop -H 0.0.0.0",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"format": "prettier --write --ignore-path .gitignore .",
"lint": "npm run lint:js & npm run lint:md",
"lint:fix": "npm run lint:js:fix & npm run lint:md:fix",
"lint:js": "eslint --ext .js,.jsx --ignore-path .gitignore .",
"lint:js:fix": "eslint --fix --ext .js,.jsx --ignore-path .gitignore .",
"lint:md": "markdownlint --ignore-path .gitignore .",
"lint:md:fix": "markdownlint --fix --ignore-path .gitignore .",
"prepare": "husky install"
},
"dependencies": {
"clsx": "^1.2.1",
"framer-motion": "^6.5.1",
"gatsby": "^4.23.1",
"gatsby-plugin-canonical-urls": "^4.23.0",
"gatsby-plugin-image": "^2.23.1",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tailwindcss": "^3.1.8"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@svgr/webpack": "^6.3.1",
"autoprefixer": "^10.4.12",
"babel-loader": "^8.2.5",
"eslint": "^8.24.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.8",
"eslint-plugin-react-hooks": "^4.6.0",
"gatsby-alias-imports": "^1.0.6",
"gatsby-plugin-manifest": "^4.23.1",
"gatsby-plugin-postcss": "^5.23.0",
"gatsby-plugin-sharp": "^4.23.1",
"gatsby-plugin-sitemap": "^5.23.1",
"gatsby-plugin-svgr-svgo": "^2.0.0",
"gatsby-source-filesystem": "^4.23.0",
"gatsby-transformer-sharp": "^4.23.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"markdownlint-cli": "^0.32.2",
"postcss": "^8.4.16",
"postcss-import": "^15.0.0",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"tailwindcss-safe-area": "^0.2.2"
},
"keywords": [
"react",
"gatsby",
"tailwind"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pixel-point/gatsby-tailwind-starter"
},
"bugs": {
"url": "https://github.com/pixel-point/gatsby-tailwind-starter/issues"
}
}