-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 KB
/
package.json
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
39
40
41
42
43
44
{
"name": "my-awesome-app",
"version": "0.0.1",
"scripts": {
"dev": "concurrently -r \"npx next\" \"npx graphql-codegen --watch\"",
"build": "next build",
"start": "next start",
"type-check": "tsc"
},
"dependencies": {
"@nexus/schema": "^0.18.0",
"@prisma/client": "2.11.0",
"apollo-server-lambda": "^2.19.0",
"apollo-server-micro": "^2.19.0",
"graphql": "^15.4.0",
"graphql-tag": "^2.11.0",
"isomorphic-unfetch": "^3.1.0",
"next": "latest",
"next-urql": "^2.1.1",
"nexus-plugin-prisma": "^0.24.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-is": "^17.0.1",
"urql": "^1.11.3"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.19.2",
"@graphql-codegen/typescript": "^1.17.11",
"@graphql-codegen/typescript-operations": "^1.17.10",
"@graphql-codegen/typescript-urql": "^2.0.2",
"@prisma/cli": "2.11.0",
"@types/node": "^14.14.9",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"concurrently": "^5.3.0",
"typescript": "^4.1.2"
},
"license": "ISC",
"prettier": {
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "none"
}
}