-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
90 lines (90 loc) · 2.43 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
83
84
85
86
87
88
89
90
{
"name": "gatsby-typescript-tailwind",
"private": false,
"description": "A gatsby starter kit using TypeScript and Tailwind CSS",
"version": "0.1.247",
"author": "Florentin Eckl <ecklf@icloud.com>",
"dependencies": {
"react": "17.0.2",
"react-dom": "17.0.2",
"react-helmet": "6.1.0"
},
"devDependencies": {
"@types/react": "17.0.7",
"@types/react-dom": "17.0.5",
"@types/react-helmet": "6.1.1",
"@typescript-eslint/eslint-plugin": "4.25.0",
"@typescript-eslint/parser": "4.25.0",
"autoprefixer": "10.2.5",
"babel-eslint": "10.1.0",
"cssnano": "5.0.4",
"eslint": "7.27.0",
"eslint-config-react-app": "6.0.0",
"eslint-loader": "4.0.2",
"eslint-plugin-flowtype": "5.7.2",
"eslint-plugin-import": "2.23.3",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"gatsby": "3.6.0",
"gatsby-image": "3.6.0",
"gatsby-plugin-eslint": "3.0.0",
"gatsby-plugin-manifest": "3.6.0",
"gatsby-plugin-offline": "4.6.0",
"gatsby-plugin-postcss": "4.6.0",
"gatsby-plugin-purgecss": "6.0.2",
"gatsby-plugin-react-helmet": "4.6.0",
"gatsby-plugin-sharp": "3.6.0",
"gatsby-plugin-typescript": "3.6.0",
"gatsby-source-filesystem": "3.6.0",
"gatsby-transformer-sharp": "3.6.0",
"husky": "6.0.0",
"lint-staged": "11.0.0",
"postcss": "^8.3.0",
"prettier": "2.3.0",
"tailwindcss": "^2.1.2",
"typescript": "4.2.4"
},
"keywords": [
"gatsby",
"typescript",
"tailwind",
"tailwind css",
"starter"
],
"license": "MIT",
"scripts": {
"prepare": "husky install",
"type-check": "tsc --noEmit",
"lint": "eslint . --ext ts,tsx",
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md,ts,tsx}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/impulse/gatsby-typescript-tailwind"
},
"bugs": {
"url": "https://github.com/impulse/gatsby-typescript-tailwind/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
}
}