-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.1 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.1 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "bleek-dot-dev",
"version": "1.0.5",
"type": "module",
"main": "./src",
"author": {
"name": "Brandon Leek",
"url": "https://github.com/bleek42/bleek-dot-dev"
},
"scripts": {
"dev": "next dev",
"dev:debug": "NODE_OPTIONS=--inspect-port=9229 next dev",
"start": "next start",
"build": "next build",
"ngrok": "concurrently 'next dev' 'ngrok http 3000'",
"lint": "next lint",
"format": "prettier --write src/**/*",
"test": "jest --watch",
"test:styled": "jest --watch tests/components/*",
"test:pages": "jest --watch tests/pages/**/*",
"gen": "graphql-codegen -c codegen.ts",
"gen:watch": "graphql-codegen -c codegen.ts -w",
"gen:hyg": "graphql-codegen -c codegen.ts --project hygraphSchema",
"gen:hygdefs": "graphql-codegen -c codegen.ts --project hygraphDefs",
"gen:hygts": "graphql-codegen -c codegen.ts --project hygraphTypes",
"gen:hygops": "graphql-codegen -c codegen.ts --project hygraphOperations",
"gen:rm": "rm -rf src/graphql/**/*.operation.ts",
"deps:rm": "rm -rf node_modules/"
},
"dependencies": {
"@tanstack/react-query": "5.71.3",
"@trpc/client": "11.0.1",
"@trpc/next": "11.0.1",
"@trpc/react-query": "11.0.1",
"@trpc/server": "11.0.1",
"eslint": "9.23.0",
"graphql-tag": "2.12.6",
"next": "15.2.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"styled-components": "6.1.13",
"zod": "3.24.2"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@jest/globals": "29.7.0",
"@stylistic/eslint-plugin-jsx": "2.7.2",
"@stylistic/eslint-plugin-migrate": "2.7.2",
"@stylistic/eslint-plugin-plus": "2.7.2",
"@stylistic/eslint-plugin-ts": "2.7.2",
"@testing-library/jest-dom": "6.5.0",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@types/jest": "29.5.12",
"@types/node": "22.5.4",
"@types/react": "18.3.5",
"@types/react-dom": "18.3.0",
"@types/react-test-renderer": "18.3.0",
"@typescript-eslint/parser": "8.4.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-styled-components": "7.2.0",
"prettier": "3.5.3",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.8.2"
},
"optionalDependencies": {
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/introspection": "4.0.3",
"@graphql-codegen/near-operation-file-preset": "3.0.0",
"@graphql-codegen/schema-ast": "4.1.0",
"@graphql-codegen/typed-document-node": "5.0.9",
"@graphql-codegen/typescript": "4.0.9",
"@graphql-codegen/typescript-graphql-request": "6.2.0",
"@graphql-codegen/typescript-operations": "4.2.3",
"@graphql-eslint/eslint-plugin": "3.20.1",
"@graphql-typed-document-node/core": "3.2.0",
"@next/eslint-plugin-next": "14.2.8",
"concurrently": "8.2.2",
"eslint-config-biome": "1.7.3",
"eslint-config-next": "14.2.8",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-n": "17.10.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.35.2",
"eslint-plugin-react-hooks": "4.6.2",
"graphql": "16.9.0",
"graphql-config": "5.1.2",
"graphql-request": "6.1.0",
"graphql-scalars": "1.23.0",
"next-router-mock": "0.9.13"
}
}