-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
37 lines (37 loc) · 960 Bytes
/
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
{
"name": "python-ts-graphql-demo",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"codegen": "graphql-codegen --watch"
},
"graphql": {
"schema": "schema.graphql",
"documents": "src/**/*.{graphql,js,ts,jsx,tsx}"
},
"dependencies": {
"@graphql-codegen/cli": "^2.2.2",
"@graphql-codegen/typescript": "^2.3.0",
"@graphql-codegen/typescript-operations": "^2.2.0",
"@graphql-codegen/typescript-urql": "^3.3.0",
"@shopify/react-form": "^1.1.6",
"graphql": "^15.7.2",
"next": "^12.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"urql": "^2.0.5"
},
"devDependencies": {
"@types/node": "16.11.6",
"@types/react": "17.0.34",
"autoprefixer": "^10.4.0",
"eslint": "7",
"eslint-config-next": "12.0.2",
"postcss": "^8.3.11",
"tailwindcss": "^3.0.0-alpha.1",
"typescript": "4.4.4"
}
}