-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.51 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
{
"name": "gatsby-tailwind-starter",
"description": "A simple starter to get up and developing quickly with Gatsby",
"version": "0.1.0",
"author": "Alex Barashkov <alex@pixelpoint.io>",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.6.0"
},
"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": "^7.6.19",
"gatsby": "^5.2.0",
"gatsby-plugin-canonical-urls": "^5.2.0",
"gatsby-plugin-image": "^3.2.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.2.4"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@svgr/webpack": "^6.5.1",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.0",
"eslint": "^8.29.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.11",
"eslint-plugin-react-hooks": "^4.6.0",
"gatsby-alias-imports": "^1.0.6",
"gatsby-plugin-manifest": "^5.2.0",
"gatsby-plugin-postcss": "^6.2.0",
"gatsby-plugin-sharp": "^5.2.0",
"gatsby-plugin-sitemap": "^6.2.0",
"gatsby-plugin-svgr-svgo": "^2.0.0",
"gatsby-source-filesystem": "^5.2.0",
"gatsby-transformer-sharp": "^5.2.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"markdownlint-cli": "^0.32.2",
"postcss": "^8.4.19",
"postcss-import": "^15.1.0",
"prettier": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.2.0",
"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"
}
}