-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.1 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "nextjs-urql-contentful",
"version": "0.1.0",
"private": true,
"scripts": {
"remove-branches": "git branch | grep -v \"main\" | xargs git branch -D",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"codegen": "graphql-codegen --config lib/grpahql-codegen/codegen.yml",
"test": "jest --config ./__tests__/jest.config.js",
"test:watch": "jest --config ./__tests__/jest.config.js --watch"
},
"dependencies": {
"@graphql-typed-document-node/core": "^3.1.1",
"@next/env": "^12.1.0",
"@urql/core": "^2.4.3",
"@urql/exchange-auth": "^0.1.7",
"@urql/exchange-graphcache": "^4.3.6",
"cross-fetch": "^3.1.5",
"graphql": "^16.3.0",
"next": "12.1.0",
"next-urql": "^3.3.2",
"normalize.css": "^8.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-is": "^17.0.2",
"urql": "^2.2.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/typed-document-node": "^2.2.7",
"@graphql-codegen/typescript": "^2.4.7",
"@graphql-codegen/typescript-operations": "^2.3.4",
"@jest/types": "^27.5.1",
"@swc/core": "^1.2.160",
"@swc/register": "^0.1.10",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@types/node": "17.0.21",
"@types/react": "17.0.39",
"@urql/devtools": "^2.0.3",
"@urql/introspection": "^0.3.2",
"eslint": "8.10.0",
"eslint-config-next": "12.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"typescript": "4.6.2"
},
"description": "NextJs + Urql (Lightweight GraphQL Endpoint)",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Project-Setup/nextjs-urql-contentful.git"
},
"keywords": [
"nextjs",
"urql",
"contentful",
"graphql"
],
"author": "David Chen",
"license": "MIT",
"bugs": {
"url": "https://github.com/Project-Setup/nextjs-urql-contentful/issues"
},
"homepage": "https://github.com/Project-Setup/nextjs-urql-contentful#readme"
}