-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3.14 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
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
{
"name": "bleek-dot-dev",
"version": "1.0.5",
"type": "module",
"main": "./src",
"author": {
"name": "Brandon Leek",
"url": "https://github.com/bleek42/bleek-dot-dev"
},
"engines": {
"node": "^22"
},
"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": {
"graphql": "^16.9.0",
"graphql-request": "^6.1.0",
"graphql-tag": "2.12.6",
"next": "^13.5.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"styled-components": "~5.3.11"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/introspection": "4.0.0",
"@graphql-codegen/near-operation-file-preset": "2.5.0",
"@graphql-codegen/schema-ast": "4.0.0",
"@graphql-codegen/typed-document-node": "^5.0.12",
"@graphql-codegen/typescript": "^4.1.2",
"@graphql-codegen/typescript-graphql-request": "5.0.0",
"@graphql-codegen/typescript-operations": "^4.4.0",
"@graphql-eslint/eslint-plugin": "3.20.1",
"@graphql-typed-document-node/core": "3.2.0",
"@jest/globals": "^29.7.0",
"@next/eslint-plugin-next": "13.4.19",
"@parcel/watcher": "2.3.0",
"@testing-library/jest-dom": "6.1.2",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/jest": "^29.5.14",
"@types/node": "20.5.7",
"@types/react": "^18.3.14",
"@types/react-dom": "^18.3.2",
"@types/react-test-renderer": "18.0.0",
"@types/styled-components": "~5.1.34",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"concurrently": "8.2.1",
"dotenv": "16.3.1",
"eslint-config-next": "13.4.19",
"eslint-config-prettier": "9.0.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-i": "2.28.0",
"eslint-plugin-n": "16.0.2",
"eslint-plugin-next": "0.0.0",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"extend-expect": "link:@testing-library/jest-dom/extend-expect",
"graphql-config": "5.0.2",
"graphql-scalars": "^1.24.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-styled-components": "^7.2.0",
"next-router-mock": "0.9.9",
"prettier": "3.0.3",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.2.2"
},
"packageManager": "[email protected]+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c"
}