This repository has been archived by the owner on Mar 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.59 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
{
"name": "next-apollo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx --ext js",
"lint:fix": "yarn lint --fix",
"codegen": "graphql-codegen --require dotenv/config --config codegen.yml"
},
"dependencies": {
"@apollo/client": "^3.2.5",
"apollo-server-micro": "^2.19.0",
"axios": "^0.21.0",
"graphql": "^15.4.0",
"next": "10.0.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"swr": "^0.3.8"
},
"devDependencies": {
"@graphql-codegen/add": "^2.0.1",
"@graphql-codegen/cli": "1.19.0",
"@graphql-codegen/named-operations-object": "^1.17.8",
"@graphql-codegen/near-operation-file-preset": "^1.17.13",
"@graphql-codegen/schema-ast": "^1.17.8",
"@graphql-codegen/typescript": "^1.17.11",
"@graphql-codegen/typescript-apollo-client-helpers": "^1.1.0",
"@graphql-codegen/typescript-operations": "^1.17.8",
"@graphql-codegen/typescript-react-apollo": "^2.1.1",
"@next/bundle-analyzer": "^10.0.3",
"@types/node": "^14.14.6",
"@types/react": "^16.9.55",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.21.5",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"next-compose-plugins": "^2.2.1",
"prettier": "^2.1.2",
"typescript": "^4.0.5"
}
}