forked from holaplex/hub-starter-vote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.01 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
{
"name": "hub-starter-template",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=19"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"migrate": "prisma migrate dev",
"generate": "prisma generate",
"reset": "prisma migrate reset --force",
"codegen": "graphql-codegen",
"db": "prisma migrate deploy"
},
"dependencies": {
"@apollo/client": "^3.7.10",
"@apollo/server": "^4.4.1",
"@as-integrations/next": "^1.2.0",
"@graphql-codegen/typescript-resolvers": "^3.1.1",
"@graphql-tools/graphql-file-loader": "^7.5.17",
"@graphql-tools/load": "^7.8.14",
"@headlessui/react": "^1.7.15",
"@heroicons/react": "^2.0.16",
"@holaplex/ui-library-react": "^0.23.0",
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "^4.9.0",
"@types/node": "18.13.0",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"async-wait-until": "^2.0.12",
"clsx": "^1.2.1",
"graphql": "^16.6.0",
"http-proxy": "^1.18.1",
"install": "^0.13.0",
"micro": "^10.0.1",
"next": "13.3.1",
"next-auth": "^4.22.1",
"next-plugin-graphql": "^0.0.2",
"npm": "^9.6.1",
"prisma": "^4.9.0",
"ramda": "^0.28.0",
"react": "^18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.45.0",
"react-spinners": "^0.13.8",
"react-toastify": "^9.1.3"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.16.4",
"@graphql-codegen/introspection": "^2.2.3",
"@graphql-codegen/schema-ast": "^3.0.1",
"@graphql-codegen/typescript": "^2.8.7",
"@graphql-codegen/typescript-document-nodes": "^2.3.12",
"@graphql-codegen/typescript-graphql-files-modules": "^2.2.1",
"@types/http-proxy": "^1.17.10",
"@types/ramda": "^0.28.23",
"autoprefixer": "^10.4.13",
"dotenv": "^16.0.3",
"eslint": "^8.33.0",
"eslint-config-next": "^13.1.6",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.5"
}
}