-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.83 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.83 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
{
"name": "nextjs-graphql-quickstart",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "biome check .",
"format": "biome format .",
"format:fix": "biome check --fix --unsafe",
"type-check": "tsc --noEmit",
"prepare": "husky",
"postinstall": "prisma generate",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@apollo/client": "^4.0.9",
"@apollo/client-integration-nextjs": "^0.14.1",
"@pothos/core": "4.10.0",
"@pothos/plugin-prisma": "4.12.0",
"@prisma/client": "6.19.0",
"@prisma/extension-accelerate": "2.0.2",
"@reduxjs/toolkit": "2.10.1",
"@tailwindcss/postcss": "4.1.17",
"classnames": "2.5.1",
"geist": "1.5.1",
"graphql": "16.12.0",
"graphql-scalars": "1.25.0",
"graphql-yoga": "5.16.2",
"next": "16.0.3",
"next-intl": "4.5.2",
"postcss-import": "16.1.1",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-hook-form": "7.66.0",
"react-redux": "9.2.0",
"tailwindcss": "4.1.17"
},
"devDependencies": {
"@biomejs/biome": "2.3.5",
"@commitlint/cli": "20.1.0",
"@commitlint/config-conventional": "20.0.0",
"@commitlint/types": "20.0.0",
"@types/node": "24.10.1",
"@types/react": "19.2.4",
"@types/react-dom": "19.2.3",
"conventional-changelog-atom": "^5.0.0",
"husky": "9.1.7",
"postcss": "8.5.6",
"prisma": "6.19.0",
"sass": "1.94.0",
"sass-loader": "16.0.6",
"ts-node": "10.9.2",
"typescript": "5.9.3",
"storybook": "^10.0.7",
"@storybook/nextjs": "^10.0.7",
"@chromatic-com/storybook": "^4.1.2",
"@storybook/addon-docs": "^10.0.7",
"@storybook/addon-onboarding": "^10.0.7",
"@storybook/addon-a11y": "^10.0.7",
"@storybook/addon-vitest": "^10.0.7"
},
"prisma": {
"seed": "ts-node --transpile-only ./prisma/seed.ts"
}
}