-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
105 lines (105 loc) · 3.15 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
98
99
100
101
102
103
104
105
{
"name": "web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"codegen": "graphql-codegen --watch",
"typecheck": "tsc --noEmit",
"db:migrate": "npx prisma migrate dev",
"db:generate": "npx prisma generate",
"db:reset": "npx prisma migrate reset",
"db:studio": "npx prisma studio --browser none",
"gql:schema": "ts-node -r dotenv/config src/graphql/schema.ts",
"postinstall": "npx prisma generate"
},
"dependencies": {
"@apollo/client": "^3.4.10",
"@dhaiwat10/react-link-preview": "^1.9.0",
"@feedback-fish/react": "^1.2.1",
"@giraphql/core": "^2.16.0",
"@giraphql/plugin-dataloader": "^2.17.0",
"@giraphql/plugin-prisma": "^0.10.0",
"@giraphql/plugin-relay": "^2.16.0",
"@giraphql/plugin-scope-auth": "^2.11.0",
"@giraphql/plugin-simple-objects": "^2.9.0",
"@giraphql/plugin-validation": "^2.12.0",
"@headlessui/react": "^1.4.0",
"@hookform/resolvers": "^2.8.0",
"@prisma/client": "^3.3.0",
"@tailwindcss/aspect-ratio": "^0.2.1",
"@tailwindcss/forms": "^0.4.0-alpha.1",
"@types/bcryptjs": "^2.4.2",
"@types/nprogress": "^0.2.0",
"apollo-server-core": "^3.4.0",
"apollo-server-errors": "^3.2.0",
"apollo-server-micro": "^3.4.0",
"apollo-upload-client": "^16.0.0",
"bcryptjs": "^2.4.3",
"blurhash": "^1.1.4",
"cloudinary": "^1.27.1",
"cloudinary-build-url": "^0.2.1",
"clsx": "^1.1.1",
"date-fns": "^2.23.0",
"emoji-mart": "^3.0.1",
"emojibase": "^5.2.0",
"graphql": "^15.5.1",
"graphql-helix": "^1.8.4",
"graphql-upload": "^12.0.0",
"interweave": "^12.8.0",
"interweave-autolink": "^4.4.3",
"interweave-emoji": "^6.0.2",
"interweave-emoji-picker": "^6.0.3",
"interweave-ssr": "^1.2.1",
"jsonwebtoken": "^8.5.1",
"micro": "^9.3.4",
"next": "^12.0.1",
"next-iron-session": "^4.2.0",
"next-seo": "^4.26.0",
"next-themes": "^0.0.15",
"nprogress": "^0.2.0",
"plaiceholder": "^2.2.0",
"prisma": "^3.3.0",
"react": "17.0.2",
"react-blurhash": "^0.1.3",
"react-cool-inview": "^2.0.8",
"react-dom": "17.0.2",
"react-dropzone": "^11.3.4",
"react-giphy-searchbox": "^1.5.4",
"react-hook-form": "^7.14.0",
"react-hot-toast": "^2.1.1",
"react-icons": "^4.2.0",
"react-infinite-scroll-component": "^6.1.0",
"react-laag": "^2.0.3",
"sharp": "^0.29.2",
"use-debounce": "^7.0.1",
"yup": "^0.32.11",
"zod": "^3.11.6",
"zustand": "^3.5.10"
},
"devDependencies": {
"@cld-apis/types": "^0.1.3",
"@graphql-codegen/cli": "^2.1.1",
"@graphql-codegen/near-operation-file-preset": "^2.1.2",
"@graphql-codegen/typescript": "^2.1.2",
"@graphql-codegen/typescript-operations": "^2.1.2",
"@tailwindcss/typography": "^0.5.0-alpha.2",
"@types/emoji-mart": "^3.0.5",
"@types/graphql-upload": "^8.0.7",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^8.5.5",
"@types/react": "17.0.19",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"autoprefixer": "^10.3.7",
"eslint": "7.32.0",
"eslint-config-next": "11.1.0",
"postcss": "^8.3.11",
"prisma-dbml-generator": "^0.8.1",
"tailwindcss": "^3.0.0-alpha.1",
"typescript": "^4.4.2"
}
}