-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
109 lines (109 loc) · 3.15 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "treadtalks-gatsby",
"description": "A Gatsby version of gettreadtalks.com",
"version": "2.0.0",
"author": "Luke McDonald (https://lukemcdonald.com/)",
"keywords": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lukemcdonald/gettreadtalks.com"
},
"scripts": {
"build": "NODE_ENV=production run-s build:*",
"build:gatsby": "gatsby build",
"ci": "rm -rf node_modules && yarn install --frozen-lockfile",
"clean": "gatsby clean",
"dev": "run-p dev:*",
"dev:gatsby": "gatsby develop",
"format": "prettier --write .",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"lint:fix": "eslint . --fix",
"predeploy": "$npm_execpath run build",
"preinstall": "npx only-allow yarn",
"serve": "gatsby serve",
"start": "$npm_execpath run dev",
"typecheck": "tsc -b",
"validate": "run-p lint typecheck"
},
"dependencies": {
"@headlessui/react": "^1.7.18",
"@heroicons/react": "^2.1.3",
"@raae/gatsby-remark-oembed": "^0.3.3",
"@sentry/gatsby": "^7.109.0",
"clsx": "^2.1.0",
"dotenv": "^16.4.5",
"firebase": "9.15.0",
"formik": "^2.4.5",
"gatsby": "^5.13.3",
"gatsby-plugin-feed": "^5.13.1",
"gatsby-plugin-image": "^3.13.1",
"gatsby-plugin-manifest": "^5.13.1",
"gatsby-plugin-netlify": "^5.1.1",
"gatsby-plugin-postcss": "^6.13.1",
"gatsby-plugin-react-svg": "^3.3.0",
"gatsby-plugin-robots-txt": "^1.8.0",
"gatsby-plugin-sharp": "^5.13.1",
"gatsby-plugin-sitemap": "^6.13.1",
"gatsby-remark-responsive-iframe": "^6.13.1",
"gatsby-source-airtable": "^2.4.2",
"gatsby-source-filesystem": "^5.13.1",
"gatsby-transformer-remark": "^6.13.1",
"gatsby-transformer-sharp": "^5.13.1",
"postcss-import": "^16.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-gravatar": "^2.6.3",
"slugify": "^1.6.6",
"striptags": "^3.2.0",
"yup": "^1.4.0"
},
"devDependencies": {
"@graphql-eslint/eslint-plugin": "^3.20.1",
"@remix-run/eslint-config": "^2.8.1",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.12",
"@types/eslint": "^8.56.7",
"@types/node": "^20.12.5",
"@types/react": "^18.2.74",
"@types/react-dom": "^18.2.24",
"@types/react-gravatar": "^2.6.14",
"@types/react-helmet": "^6.1.11",
"autoprefixer": "^10.4.19",
"eslint": "8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"esm": "^3.2.25",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.38",
"postcss-cli": "^11.0.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.13",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.4"
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build"
],
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"prettier --write",
"eslint"
]
},
"engines": {
"node": ">=18"
}
}