mirror of
https://github.com/jorgev259/soc_site-astro.git
synced 2025-06-29 07:57:41 +00:00
Set up GQL client
This commit is contained in:
parent
ec77cb1d24
commit
6833439a4a
14 changed files with 1349 additions and 418 deletions
20
package.json
20
package.json
|
|
@ -3,25 +3,33 @@
|
|||
"type": "module",
|
||||
"version": "0.0.1",
|
||||
"scripts": {
|
||||
"dev": "astro dev",
|
||||
"start": "astro dev",
|
||||
"build": "astro check && astro build",
|
||||
"dev": "concurrently \"npm:gql:watch\" \"npm:astro:dev\"",
|
||||
"astro:dev": "astro dev",
|
||||
"build": "astro check && npm run gql:compile && astro build",
|
||||
"preview": "astro preview",
|
||||
"astro": "astro"
|
||||
"astro": "astro",
|
||||
"gql:compile": "graphql-codegen",
|
||||
"gql:watch": "graphql-codegen -w"
|
||||
},
|
||||
"dependencies": {
|
||||
"@apollo/client": "^3.11.4",
|
||||
"@astrojs/check": "^0.9.2",
|
||||
"@astrojs/node": "^8.3.2",
|
||||
"@astrojs/tailwind": "^5.1.0",
|
||||
"@auth/core": "^0.32.0",
|
||||
"@eddeee888/gcg-typescript-resolver-files": "^0.10.4",
|
||||
"@graphql-codegen/cli": "^5.0.2",
|
||||
"@graphql-tools/resolvers-composition": "^7.0.1",
|
||||
"@graphql-tools/schema": "^10.0.4",
|
||||
"astro": "^4.13.1",
|
||||
"auth-astro": "^4.1.2",
|
||||
"graphql-scalars": "^1.23.0",
|
||||
"tailwindcss": "^3.4.8"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@eddeee888/gcg-typescript-resolver-files": "^0.10.4",
|
||||
"@graphql-codegen/cli": "^5.0.2",
|
||||
"@parcel/watcher": "^2.4.1",
|
||||
"@typescript-eslint/parser": "^6.21.0",
|
||||
"concurrently": "^8.2.2",
|
||||
"eslint": "^8.57.0",
|
||||
"eslint-plugin-astro": "^1.2.3",
|
||||
"eslint-plugin-jsx-a11y": "^6.9.0",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue