-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
94 lines (94 loc) · 2.64 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
{
"name": "nf-shard",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"migrate": "npx prisma migrate dev",
"generate": "npx prisma generate",
"build": "next build",
"start": "next start",
"lint": "next lint",
"studio": "npx prisma studio",
"codegen": "graphql-codegen --config codegen.ts"
},
"dependencies": {
"@ant-design/cssinjs": "^1.17.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.3.2",
"@headlessui/react": "^1.7.16",
"@heroicons/react": "^2.0.18",
"@hookform/resolvers": "^3.9.0",
"@mantine/core": "^6.0.19",
"@mantine/hooks": "^6.0.19",
"@mantine/prism": "^6.0.19",
"@mui/material": "^5.14.5",
"@prisma/client": "^5.1.1",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@tailwindcss/forms": "^0.5.4",
"@tanstack/match-sorter-utils": "^8.15.1",
"@tanstack/react-table": "^8.19.2",
"@textea/json-viewer": "^3.1.1",
"@types/bytes": "^3.1.1",
"@types/moment": "^2.13.0",
"@types/nanoid": "^3.0.0",
"@types/node": "20.4.8",
"@types/react": "18.2.18",
"@types/react-dom": "18.2.7",
"antd": "^5.11.1",
"autoprefixer": "10.4.14",
"bytes": "^3.1.2",
"canvas-confetti": "^1.9.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"eslint": "8.46.0",
"eslint-config-next": "13.4.19",
"graphql": "^16.9.0",
"lucide-react": "^0.408.0",
"moment": "^2.29.4",
"nanoid": "^4.0.2",
"next": "^14.2.3",
"next-logger": "^3.0.2",
"plotly.js": "^2.26.0",
"postcss": "8.4.27",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.1",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.10.1",
"react-infinite-scroll-component": "^6.1.0",
"react-plotly.js": "^2.6.0",
"sass": "^1.66.1",
"subscriptions-transport-ws": "^0.11.0",
"tailwind-merge": "^2.4.0",
"tailwindcss": "3.3.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.1.6",
"unique-names-generator": "^4.7.1",
"urql": "^4.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/canvas-confetti": "^1.6.4",
"@types/plotly.js": "^2.12.26",
"@types/react-plotly.js": "^2.6.0",
"@types/uuid": "^9.0.2",
"dotenv-cli": "^7.3.0",
"prettier": "^3.0.3",
"prisma": "^5.2.0",
"prisma-json-types-generator": "^3.0.0-beta.4"
},
"peerDependencies": {
"prisma": "^5.2.0"
}
}