-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.32 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.32 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
41
42
43
44
45
46
{
"name": "next-advanced-apollo-starter",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "vitest",
"codegen": "env-cmd -f .env.local graphql-codegen"
},
"dependencies": {
"@apollo/client": "4.1.1",
"@apollo/client-integration-nextjs": "0.14.4",
"@graphql-codegen/cli": "6.1.1",
"@graphql-codegen/near-operation-file-preset": "4.0.0",
"@graphql-codegen/schema-ast": "5.0.0",
"@graphql-codegen/typed-document-node": "6.1.5",
"@graphql-codegen/typescript": "5.0.7",
"@graphql-codegen/typescript-operations": "5.0.7",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@types/node": "25.0.9",
"@types/react": "19.2.9",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.1.2",
"babel-plugin-react-compiler": "1.0.0",
"cookie": "1.1.1",
"env-cmd": "11.0.0",
"eslint": "9.39.2",
"eslint-config-next": "16.1.4",
"jsdom": "27.4.0",
"next": "16.1.4",
"normalize.css": "8.0.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"typescript": "5.9.3",
"vite-tsconfig-paths": "6.0.4",
"vitest": "4.0.17"
},
"devDependencies": {
"prettier": "3.8.0"
}
}