-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.23 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
{
"name": "next-rickql",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"codequality": "npm run format && npm run lint && npm run typecheck",
"codequality:fix": "npm run format:fix && npm run lint:fix && npm run typecheck",
"dev": "next dev",
"dev:all": "npm-run-all --parallel dev gql-codegen:watch",
"dev:all:about": "echo 'https://the-guild.dev/graphql/codegen/docs/getting-started/development-workflow#watch-mode'",
"format": "prettier --check --ignore-unknown .",
"format:fix": "prettier --write --ignore-unknown .",
"gql-codegen": "graphql-codegen",
"gql-codegen:watch": "graphql-codegen --watch",
"lint": "eslint --max-warnings 0",
"lint:fix": "eslint --fix --max-warnings 0",
"prepare": "husky",
"start": "next start",
"typecheck": "tsc",
"unused": "knip",
"updates": "npm-check-updates -i"
},
"dependencies": {
"@tanstack/react-query": "^5.90.20",
"graphql": "^16.12.0",
"graphql-request": "^7.4.0",
"next": "16.1.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-icons": "^5.5.0",
"react-infinite-scroll-hook": "^6.0.1",
"tailwind-merge": "^3.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@graphql-codegen/cli": "^6.1.1",
"@graphql-codegen/client-preset": "^5.2.2",
"@graphql-codegen/introspection": "^5.0.0",
"@graphql-typed-document-node/core": "^3.2.0",
"@parcel/watcher": "^2.5.6",
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "^25.2.2",
"@types/react": "19.2.13",
"@types/react-dom": "19.2.3",
"eslint": "^9.39.2",
"eslint-config-next": "16.1.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-unicorn": "^62.0.0",
"husky": "^9.1.7",
"knip": "^5.83.1",
"lint-staged": "^16.2.7",
"npm-check-updates": "^19.3.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-packagejson": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
},
"packageManager": "npm@11.7.0"
}