-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.9 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
{
"name": "gatsby-starter-typescript-tailwindcss",
"private": true,
"description": "Gatsby TypeScript & Tailwind CSS Starter",
"version": "1.0.0",
"author": "Marc Molina <contact@marcm.dev>",
"dependencies": {
"autoprefixer": "^10.3.7",
"gatsby": "^3.14.2",
"gatsby-plugin-image": "^1.14.1",
"gatsby-plugin-manifest": "^3.14.0",
"gatsby-plugin-offline": "^4.14.0",
"gatsby-plugin-postcss": "^4.14.0",
"gatsby-plugin-purgecss": "^6.0.2",
"gatsby-plugin-react-helmet": "^4.14.0",
"gatsby-plugin-sharp": "^3.14.1",
"gatsby-source-filesystem": "^3.14.0",
"gatsby-transformer-sharp": "^3.14.0",
"postcss": "^8.3.9",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"tailwindcss": "^2.2.17"
},
"devDependencies": {
"@types/react-dom": "^17.0.9",
"@types/react-helmet": "^6.1.4",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"cssnano": "^5.0.8",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
},
"keywords": [
"gatsby",
"typescript",
"tailwindcss"
],
"license": "0BSD",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"lint": "eslint . --ext ts --ext tsx",
"type-check": "tsc --pretty --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/2n3g5c9/gatsby-starter-typescript-tailwindcss"
},
"bugs": {
"url": "https://github.com/2n3g5c9/gatsby-starter-typescript-tailwindcss/issues"
}
}