-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
86 lines (86 loc) · 2.61 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
{
"name": "swimmy",
"version": "6.2.0",
"scripts": {
"dev": "graphql-codegen && next dev",
"build": "next build",
"start": "next start",
"studio": "prisma studio --browser none",
"test": "echo ''",
"test:watch": "jest --watch",
"emulators": "firebase emulators:start",
"lint": "eslint --ignore-path .gitignore --ext .ts,.tsx .",
"lint:fix": "eslint --fix --ignore-path .gitignore --ext .ts,.tsx .",
"format": "prettier --write --ignore-path .gitignore */**/*.{ts,tsx}",
"prebuild": "prisma generate && graphql-codegen",
"postinstall": "graphql-codegen"
},
"dependencies": {
"@apollo/client": "^3.7.1",
"@apollo/server": "^4.1.1",
"@as-integrations/next": "^1.0.0",
"@blitzjs/auth": "2.0.0-beta.14",
"@blitzjs/next": "2.0.0-beta.14",
"@blitzjs/rpc": "2.0.0-beta.14",
"@emotion/react": "^11.10.5",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.5",
"@hookform/resolvers": "^2.9.10",
"@mui/icons-material": "^5.10.9",
"@mui/lab": "^5.0.0-alpha.105",
"@mui/material": "^5.10.11",
"@prisma/client": "latest",
"@sentry/node": "7.17.1",
"@sentry/react": "^7.17.1",
"@sentry/tracing": "7.17.1",
"@types/sharp": "0.31.0",
"blitz": "2.0.0-beta.14",
"firebase": "^9.12.1",
"firebase-admin": "^11.2.0",
"graphql": "^16.6.0",
"immer": "9.0.16",
"nanoid": "3.3.4",
"next": "12.3.1",
"notistack": "^2.0.8",
"prisma": "4.5.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.38.0",
"react-markdown": "^8.0.3",
"reflect-metadata": "^0.1.13",
"sharp": "^0.31.1",
"tsyringe": "^4.7.0",
"zod": "^3.19.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.13.11",
"@graphql-codegen/typescript": "^2.8.1",
"@graphql-codegen/typescript-operations": "^2.5.6",
"@graphql-codegen/typescript-react-apollo": "^3.3.6",
"@graphql-codegen/typescript-resolvers": "^2.7.6",
"@graphql-tools/graphql-file-loader": "^7.5.10",
"@graphql-tools/load": "^7.8.5",
"@graphql-tools/schema": "^9.0.9",
"@jest/types": "29.2.1",
"@types/jest": "29.2.0",
"@types/react": "18.0.24",
"eslint": "8.26.0",
"eslint-config-next": "13.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-unused-imports": "2.0.0",
"firebase-tools": "11.15.0",
"prettier": "2.7.1",
"prettier-plugin-prisma": "4.4.0",
"pretty-quick": "3.1.3",
"prisma": "4.5.0",
"typescript": "4.7.4"
},
"private": true,
"prisma": {
"schema": "db/schema.prisma"
},
"volta": {
"node": "16.15.0",
"yarn": "1.22.19"
}
}