-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.04 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
92
93
94
95
96
97
{
"name": "hello-next",
"version": "1.0.0",
"description": "",
"keywords": [],
"license": "GPL-3.0-only",
"author": "adenlall",
"scripts": {
"dev": "next dev",
"build": "relay-compiler --validate && gql-gen --config codegen.ts && next build",
"start": "next start",
"lint": "next lint",
"codegen": "gql-gen --config codegen.ts",
"relay": "relay-compiler",
"relay:watch": "relay-compiler --watch",
"postinstall": "prisma generate --no-engine",
"test": "jest",
"test:watch": "jest --watch"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@apollo/client": "3.8.6",
"@auth/prisma-adapter": "^1.0.4",
"@graphql-typed-document-node/core": "^3.2.0",
"@neondatabase/serverless": "^0.9.4",
"@pothos/core": "3.38.0",
"@pothos/plugin-prisma": "3.61.0",
"@pothos/plugin-relay": "^3.46.1",
"@pothos/plugin-validation": "^3.10.2",
"@prisma/adapter-neon": "^5.16.2",
"@prisma/client": "^5.16.2",
"@prisma/extension-accelerate": "^1.1.0",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-navigation-menu": "^1.2.0",
"@radix-ui/react-slot": "^1.1.0",
"@react-spring/parallax": "^9.7.4",
"@react-spring/web": "^9.7.4",
"@tabler/icons-react": "^3.11.0",
"antd": "^5.10.2",
"chart.js": "^4.4.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"edge": "link:@prisma/client/edge",
"eslint-plugin-graphql": "^4.0.0",
"framer-motion": "^11.3.19",
"graphql-scalars": "1.22.4",
"graphql-yoga": "4.0.5",
"next": "14.2.4",
"next-auth": "5.0.0-beta.19",
"next-themes": "^0.3.0",
"react": "18.3.1",
"react-chartjs-2": "^5.2.0",
"react-dom": "18.3.1",
"react-highlight-words": "^0.20.0",
"react-markdown": "8.0.7",
"react-relay": "^17.0.0",
"relay-runtime": "^17.0.0",
"styled-components": "^6.1.0",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"ws": "^8.18.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.3.2",
"@graphql-codegen/schema-ast": "^4.1.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@types/graphql": "14.5.0",
"@types/node": "18.18.5",
"@types/react": "18.2.28",
"@types/react-highlight-words": "^0.16.6",
"@types/react-relay": "^16.0.6",
"@types/relay-runtime": "^17.0.1",
"@types/ws": "^8.5.10",
"autoprefixer": "^10.4.19",
"bufferutil": "^4.0.8",
"graphql": "16.8.1",
"graphql-codegen-typescript-client": "0.18.2",
"graphql-tag": "^2.12.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.39",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.5",
"prisma": "^5.16.2",
"relay-compiler": "^17.0.0",
"tailwindcss": "^3.4.6",
"ts-graphql-plugin": "^4.0.2",
"ts-node": "10.9.1",
"typescript": "5.2.2"
}
}