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
2023-08-24 12:35:22 +02:00

53 lines
1.6 KiB
JSON

{
"name": "next",
"version": "0.1.0",
"private": true,
"scripts": {
"fetch-directus-schema": "dotenv -- node ./src/fetch-schema.js",
"mesh:dev": "dotenv -e .env.local -- mesh build",
"next:dev": "dotenv -e .env.local -- next dev",
"dev": "npm run fetch-directus-schema && npm run mesh:dev && npm run next:dev",
"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",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@directus/sdk": "^11.0.1",
"@envelop/generic-auth": "^6.0.0",
"@graphql-mesh/cli": "^0.85.1",
"@graphql-mesh/graphql": "^0.95.1",
"@graphql-mesh/openapi": "^0.94.7",
"@graphql-mesh/types": "^0.95.2",
"@graphql-tools/schema": "^10.0.0",
"@types/node": "20.4.1",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"autoprefixer": "10.4.14",
"axios": "^1.4.0",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.3.0",
"eslint": "8.44.0",
"eslint-config-next": "13.4.9",
"fs": "0.0.1-security",
"graphql": "^16.7.1",
"graphql-request": "^6.1.0",
"graphql-sse": "^2.2.3",
"graphql-subscriptions": "^2.0.0",
"graphql-ws": "^5.14.0",
"isomorphic-ws": "^5.0.0",
"next": "13.4.9",
"node-fetch": "^3.3.2",
"path": "^0.12.7",
"postcss": "8.4.25",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.2",
"typescript": "5.1.6",
"ws": "^8.13.0"
},
"devDependencies": {
"raw-loader": "^4.0.2"
}
}