-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.19 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
{
"name": "frontend-makeathon2023",
"version": "1.0.0",
"private": true,
"description": "frontend-makeathon2023",
"author": "Laurenz Sommerlad",
"keywords": [
"gatsby"
],
"scripts": {
"analyze": "npm run analyze:lint && npm run analyze:prettier",
"analyze:lint": "eslint --ext .jsx --ext .js .",
"analyze:prettier": "prettier --list-different \"**/*.{css,js,jsx,json,md}\"",
"apollo:schema": "apollo client:download-schema schema.json",
"build": "gatsby build",
"clean": "gatsby clean",
"dev": "npm run develop",
"develop": "gatsby develop",
"fix": "npm run fix:lint && npm run fix:prettier",
"fix:lint": "eslint --ext .jsx --ext .js . --fix",
"fix:prettier": "prettier --write \"**/*.{css,js,jsx,json,md}\"",
"serve": "gatsby serve",
"start": "npm run develop",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"dependencies": {
"@apollo/client": "^3.7.15",
"@headlessui/react": "^1.7.15",
"@heroicons/react": "^1.0.6",
"@mdx-js/react": "^2.3.0",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"apollo-upload-client": "^17.0.0",
"dotenv": "^16.3.0",
"gatsby": "^5.11.0",
"gatsby-plugin-apollo": "^4.0.3",
"gatsby-plugin-manifest": "^5.11.0",
"gatsby-plugin-mdx": "^5.11.0",
"gatsby-plugin-offline": "^6.11.0",
"gatsby-plugin-postcss": "^6.11.0",
"gatsby-source-filesystem": "^5.11.0",
"i18next": "^23.1.0",
"i18next-browser-languagedetector": "^7.0.2",
"i18next-http-backend": "^2.2.1",
"js-cookie": "^3.0.5",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-i18next": "^13.0.0",
"react-select": "^5.7.3",
"react-toastify": "^9.1.3",
"showdown": "^2.1.0",
"tailwindcss": "^3.3.2"
},
"devDependencies": {
"@graphql-eslint/eslint-plugin": "^3.19.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"gatsby-plugin-eslint": "^4.0.4",
"prettier": "^2.8.8"
},
"engines": {
"node": ">=18.0.0"
}
}