-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.22 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.22 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
39
40
{
"name": "github-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"prepare": "husky install",
"schema:download": "curl -H \"Authorization: bearer YOUR_TOKEN\" https://api.github.com/graphql -o graphql-schema.json",
"schema:generate": "npx apollo codegen:generate --localSchemaFile=graphql-schema.json --includes graphql/* --target=typescript --tagName=gql --excludes **/__generated__"
},
"dependencies": {
"@apollo/client": "^3.7.0",
"classnames": "^2.3.2",
"graphql": "15.8.0",
"next": "12.3.1",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "18.11.0",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"apollo": "^2.34.0",
"eslint": "8.25.0",
"eslint-config-next": "12.3.1",
"eslint-plugin-testing-library": "^5.7.2",
"husky": "^8.0.1",
"jest": "^29.2.0",
"jest-environment-jsdom": "^29.2.0",
"sass": "^1.55.0",
"typescript": "4.8.4"
}
}