-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.03 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.03 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
{
"name": "@sample/web",
"version": "0.1.0",
"description": "",
"author": "DoltHub",
"scripts": {
"compile": "tsc -b",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"generate-types": "graphql-codegen --config codegen.yml"
},
"dependencies": {
"@apollo/client": "^4.1.3",
"@react-icons/all-files": "^4.1.0",
"isomorphic-unfetch": "^4.0.2",
"next": "^14.2.10",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-loader": "^2.4.7",
"react-timeago": "^8.3.0",
"swr": "^2.3.6"
},
"devDependencies": {
"@graphql-codegen/cli": "^6.0.1",
"@graphql-codegen/introspection": "^5.0.0",
"@graphql-codegen/typescript": "^5.0.7",
"@graphql-codegen/typescript-operations": "^5.0.7",
"@graphql-codegen/typescript-react-apollo": "^4.3.3",
"@types/react": "^18.3.12",
"@types/react-loader": "^2.4.8",
"@types/react-timeago": "^8.0.0",
"eslint": "8.57.0",
"eslint-config-next": "15.5.4",
"typescript": "^5.9.3"
}
}