-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.34 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "yarn install & yarn prisma generate & next build",
"backend": "npm run codegen",
"codegen": "graphql-codegen -r dotenv/config"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"dependencies": {
"@graphql-codegen/typed-document-node": "^2.3.6",
"@graphql-codegen/typescript-operations": "^2.5.6",
"@graphql-yoga/node": "^2.13.13",
"@pothos/core": "^3.22.9",
"@pothos/plugin-prisma": "^3.35.8",
"@prisma/client": "^4.5.0",
"@types/graphql": "^14.5.0",
"@types/node": "^18.11.9",
"@types/react-dom": "^18.0.8",
"encoding": "^0.1.13",
"eslint-config-next": "^13.0.1",
"grafbase": "^0.11.0",
"graphql": "^16.6.0",
"graphql-request": "^5.0.0",
"graphql-scalars": "^1.20.0",
"leaflet": "^1.9.2",
"next": "^13.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-leaflet": "^4.1.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.13.11",
"@graphql-codegen/client-preset": "^1.1.3",
"@graphql-codegen/typescript": "^2.8.1",
"@graphql-codegen/typescript-resolvers": "2.7.6",
"@types/react": "^18.0.24",
"autoprefixer": "^10.4.13",
"postcss": "^8.4.18",
"prisma": "^4.5.0",
"tailwindcss": "^3.2.2",
"typescript": "4.8.4"
}
}