-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 2.19 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
{
"name": "next-rickql",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"codequality": "pnpm format && pnpm lint && pnpm typecheck",
"codequality:fix": "pnpm format:fix && pnpm lint:fix && pnpm typecheck",
"dev": "next dev --turbopack",
"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": "next lint --max-warnings 0",
"lint:fix": "next lint --fix --max-warnings 0",
"prepare": "husky",
"start": "next start",
"typecheck": "tsc",
"unused": "knip",
"updates": "npm-check-updates -i"
},
"dependencies": {
"@tanstack/react-query": "^5.62.7",
"graphql": "^16.9.0",
"graphql-request": "^7.1.2",
"next": "15.1.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-icons": "^5.4.0",
"react-infinite-scroll-hook": "^5.0.1",
"tailwind-merge": "^2.5.5",
"zod": "^3.24.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/client-preset": "^4.5.1",
"@graphql-codegen/introspection": "^4.0.3",
"@graphql-typed-document-node/core": "^3.2.0",
"@parcel/watcher": "^2.5.0",
"@types/node": "^22.10.2",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2",
"autoprefixer": "^10.4.20",
"eslint": "^9.17.0",
"eslint-config-next": "15.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-unicorn": "^56.0.1",
"husky": "^9.1.7",
"knip": "^5.40.0",
"lint-staged": "^15.2.11",
"npm-check-updates": "^17.1.11",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.6",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
},
"packageManager": "pnpm@9.15.0"
}