-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.95 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
{
"name": "gatsby-typescript-tailwind-starter",
"private": true,
"description": "A starter for a blog powered by Gatsby and Markdown, with TS and Tailwind",
"version": "0.1.0",
"author": "Ciaran Edwards <hello@ciaran.codes>",
"homepage": "https://github.com/kiiran/gatsby-typescript-tailwind-starter#readme",
"keywords": [
"gatsby"
],
"license": "0BSD",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/kiiran/gatsby-typescript-tailwind-starter.git"
},
"scripts": {
"build": "gatsby build",
"dev": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"lint": "eslint ./*.js src --ext js,ts,tsx --fix --quiet",
"start": "npm run dev",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"typecheck": "tsc -p ./tsconfig.json"
},
"dependencies": {
"@fontsource/lora": "^4.4.5",
"@fontsource/manrope": "^4.4.5",
"gatsby": "^3.8.0",
"gatsby-plugin-feed": "^3.8.0",
"gatsby-plugin-gatsby-cloud": "^2.8.1",
"gatsby-plugin-graphql-codegen": "^3.0.0",
"gatsby-plugin-image": "^1.8.0",
"gatsby-plugin-manifest": "^3.8.0",
"gatsby-plugin-offline": "^4.8.0",
"gatsby-plugin-react-helmet": "^4.8.0",
"gatsby-plugin-sharp": "^3.8.0",
"gatsby-remark-copy-linked-files": "^4.5.0",
"gatsby-remark-images": "^5.5.0",
"gatsby-remark-prismjs": "^5.5.0",
"gatsby-remark-responsive-iframe": "^4.5.0",
"gatsby-remark-smartypants": "^4.5.0",
"gatsby-source-filesystem": "^3.8.0",
"gatsby-transformer-remark": "^4.5.0",
"gatsby-transformer-sharp": "^3.8.0",
"prismjs": "^1.23.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-feather": "^2.0.9",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"@graphql-codegen/add": "^2.0.2",
"@graphql-codegen/cli": "^1.21.5",
"@graphql-codegen/fragment-matcher": "^2.0.1",
"@graphql-codegen/typescript": "^1.22.3",
"@graphql-codegen/typescript-document-nodes": "^1.17.14",
"@graphql-codegen/typescript-operations": "^1.18.2",
"@tailwindcss/typography": "^0.4.1",
"@types/react-helmet": "^6.1.1",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"autoprefixer": "^10.2.6",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-tailwindcss": "^1.13.4",
"eslint-plugin-testing-library": "^4.6.0",
"gatsby-plugin-postcss": "^4.8.0",
"gatsby-plugin-resolve-src": "^2.1.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.5",
"prettier": "2.3.1",
"tailwindcss": "^2.2.2",
"typescript": "^4.3.4"
}
}