cibus-frontend/package.json

34 lines
954 B
JSON
Raw Normal View History

2022-08-09 01:34:58 +02:00
{
"private": true,
"scripts": {
2022-08-20 22:29:54 +02:00
"dev": "next dev",
"build": "next build",
"start": "next start",
2022-08-20 22:44:03 +02:00
"generate:graphql": "graphql-codegen",
"format:graphql": "prettier -w src/lib/graphql/generated.ts"
2022-08-09 01:34:58 +02:00
},
"dependencies": {
2022-08-20 22:29:54 +02:00
"@apollo/client": "^3.6.9",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"next": "latest",
"react": "18.1.0",
"react-dom": "18.1.0"
2022-08-09 01:34:58 +02:00
},
"devDependencies": {
2022-08-20 22:29:54 +02:00
"@graphql-codegen/cli": "^2.11.6",
"@graphql-codegen/typed-document-node": "^2.3.3",
"@graphql-codegen/typescript": "^2.7.3",
"@graphql-codegen/typescript-operations": "^2.5.3",
"@graphql-codegen/typescript-react-apollo": "^3.3.3",
"@graphql-codegen/typescript-react-query": "^4.0.1",
"@types/node": "17.0.35",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.5",
"autoprefixer": "^10.4.7",
"postcss": "^8.4.14",
"tailwindcss": "^3.1.2",
"typescript": "4.7.2"
2022-08-09 01:34:58 +02:00
}
}