forked from otociulis/nextjs-typescript-graphql-mongo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.08 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.08 KB
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
{
"name": "nextjs-typescript-graphql-mongo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"generate": "graphql-codegen"
},
"dependencies": {
"@apollo/client": "^3.0.0-beta.44",
"@apollo/react-components": "^3.1.5",
"@graphql-codegen/typescript-resolvers": "^1.13.5",
"@types/mongodb": "^3.5.14",
"apollo-server-micro": "^2.12.0",
"graphql": "^15.0.0",
"graphql-import-node": "^0.0.4",
"mongodb": "^3.5.7",
"next": "9.3.6",
"node-fetch": "^2.6.0",
"react": "16.13.1",
"react-dom": "16.13.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.13.5",
"@graphql-codegen/typescript": "^1.13.5",
"@graphql-codegen/typescript-mongodb": "^1.13.5",
"@graphql-codegen/typescript-operations": "^1.13.5",
"@graphql-codegen/typescript-react-apollo": "^1.13.5",
"@types/node": "^13.13.4",
"@types/react": "^16.9.34",
"prettier": "^2.0.5",
"ts-node": "^8.10.1",
"typescript": "^3.8.3",
"webpack-graphql-loader": "^1.0.2"
}
}