This repository has been archived on 2023-09-04. You can view files and clone it, but cannot push or open issues or pull requests.
ARCHIVED-graphql/package.json

53 lines
1.6 KiB
JSON
Raw Permalink Normal View History

{
2023-07-12 14:32:52 +00:00
"name": "next",
"version": "0.1.0",
"private": true,
"scripts": {
2023-08-22 09:05:15 +00:00
"fetch-directus-schema": "dotenv -- node ./src/fetch-schema.js",
2023-08-22 08:34:27 +00:00
"mesh:dev": "dotenv -e .env.local -- mesh build",
"next:dev": "dotenv -e .env.local -- next dev",
2023-08-22 09:05:15 +00:00
"dev": "npm run fetch-directus-schema && npm run mesh:dev && npm run next:dev",
2023-08-22 08:44:36 +00:00
"mesh:build": "dotenv -e .env.production -- mesh build",
"next:build": "dotenv -e .env.production -- next build",
"build": "npm run mesh:build && npm run next:build",
2023-07-12 14:39:45 +00:00
"start": "next start",
2023-07-12 14:32:52 +00:00
"lint": "next lint"
},
"dependencies": {
2023-08-21 13:34:56 +00:00
"@directus/sdk": "^11.0.1",
"@envelop/generic-auth": "^6.0.0",
2023-07-12 14:32:52 +00:00
"@graphql-mesh/cli": "^0.85.1",
2023-08-21 13:34:56 +00:00
"@graphql-mesh/graphql": "^0.95.1",
2023-07-12 14:32:52 +00:00
"@graphql-mesh/openapi": "^0.94.7",
2023-08-22 08:49:53 +00:00
"@graphql-mesh/types": "^0.95.2",
2023-08-21 13:34:56 +00:00
"@graphql-tools/schema": "^10.0.0",
2023-07-12 14:32:52 +00:00
"@types/node": "20.4.1",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"autoprefixer": "10.4.14",
2023-08-21 13:34:56 +00:00
"axios": "^1.4.0",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.3.0",
2023-07-12 14:32:52 +00:00
"eslint": "8.44.0",
"eslint-config-next": "13.4.9",
2023-08-21 13:34:56 +00:00
"fs": "0.0.1-security",
"graphql": "^16.7.1",
"graphql-request": "^6.1.0",
2023-08-24 10:35:22 +00:00
"graphql-sse": "^2.2.3",
2023-08-23 05:25:32 +00:00
"graphql-subscriptions": "^2.0.0",
"graphql-ws": "^5.14.0",
2023-08-24 10:35:22 +00:00
"isomorphic-ws": "^5.0.0",
2023-07-12 14:32:52 +00:00
"next": "13.4.9",
2023-08-21 13:34:56 +00:00
"node-fetch": "^3.3.2",
2023-08-23 12:01:52 +00:00
"path": "^0.12.7",
2023-07-12 14:32:52 +00:00
"postcss": "8.4.25",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.2",
2023-08-23 05:25:32 +00:00
"typescript": "5.1.6",
"ws": "^8.13.0"
2023-08-23 15:00:43 +00:00
},
"devDependencies": {
"raw-loader": "^4.0.2"
2023-07-12 14:32:52 +00:00
}
}