-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
74 lines (74 loc) · 2.59 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
{
"name": "rick-and-morty-graphql",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"codequality:check": "pnpm format:check && pnpm lint:check && pnpm types:check",
"codequality:fix": "pnpm format:fix && pnpm lint:fix && pnpm types:check",
"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:check": "prettier --check --ignore-unknown .",
"format:fix": "prettier --write --ignore-unknown .",
"gql-codegen": "graphql-codegen",
"gql-codegen:watch": "graphql-codegen --watch",
"lint:check": "next lint --max-warnings 0",
"lint:fix": "next lint --fix --max-warnings 0",
"prepare": "husky",
"start": "next start",
"types:check": "tsc",
"unused:check": "knip",
"updates:check": "npm-check-updates -i"
},
"dependencies": {
"@tanstack/react-query": "^5.55.4",
"graphql": "^16.9.0",
"graphql-request": "^7.1.0",
"next": "15.0.2",
"react": "19.0.0-rc-02c0e824-20241028",
"react-dom": "19.0.0-rc-02c0e824-20241028",
"react-icons": "^5.3.0",
"react-infinite-scroll-hook": "^5.0.1",
"tailwind-merge": "^2.5.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.3.3",
"@graphql-codegen/introspection": "^4.0.3",
"@graphql-typed-document-node/core": "^3.2.0",
"@parcel/watcher": "^2.4.1",
"@types/node": "^22.5.4",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-next": "15.0.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-unicorn": "^55.0.0",
"husky": "^9.1.5",
"knip": "^5.30.0",
"lint-staged": "^15.2.10",
"npm-check-updates": "^17.1.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.45",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-packagejson": "^2.5.2",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
}
}
}