-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
136 lines (136 loc) · 4.35 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "zonito",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "eslint ./src/pages/* ./src/components/* ./src/pages/api/* ./src/graphql/* ./src/lib/* -c .eslintrc.json --fix --ext ts,tsx",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"generate": "graphql-codegen",
"generate:watch": "graphql-codegen --watch 'src/graphql/**/*.ts'",
"postinstall": "yarn generate && prisma generate",
"gcdn:push": "npx graphcdn push --service zonito",
"db:dev": "pscale connect zonitodb development --port 3309",
"db:prod": "pscale connect zonitodb main --port 3309"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@apollo/client": "^3.12.4",
"@apollo/link-error": "^2.0.0-beta.3",
"@apollo/link-schema": "^2.0.0-beta.3",
"@auth0/nextjs-auth0": "^3.5.0",
"@graphql-tools/schema": "^10.0.16",
"@headlessui/react": "^2.2.0",
"@prisma/client": "^6.1.0",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.15",
"@tippy.js/react": "^3.1.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"apollo-server-micro": "^2.26.1",
"cheerio": "^1.0.0",
"cryptr": "^6.3.0",
"date-fns": "^4.1.0",
"deepmerge": "^4.3.1",
"feed": "^4.2.2",
"framer-motion": "^11.16.0",
"graphql": "^16.10.0",
"isomorphic-unfetch": "^4.0.2",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"lru-cache": "^11.0.2",
"next": "15.1.3",
"next-seo": "^6.6.0",
"postmark": "^4.0.5",
"react": "^18.3.1",
"react-autosize-textarea": "^7.1.0",
"react-dom": "^18.3.1",
"react-dropzone": "^14.3.5",
"react-feather": "^2.0.10",
"react-hot-toast": "^2.5.1",
"react-linkify": "^1.0.0-alpha",
"react-markdown": "^9.0.3",
"react-syntax-highlighter": "^15.6.1",
"react-visibility-sensor": "^5.1.1",
"rehype-parse": "^9.0.1",
"rehype-raw": "^7.0.0",
"rehype-remark": "^10.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark": "^15.0.1",
"remark-gfm": "^4.0.0",
"remark-linkify-regex": "^1.2.1",
"remark-preset-lint-recommended": "^7.0.0",
"remark-rehype": "^11.1.1",
"remove-markdown": "^0.5.5",
"slugify": "^1.6.6",
"string-replace-to-array": "^2.1.1",
"turndown": "^7.2.0",
"turndown-plugin-gfm": "^1.0.2",
"unified": "^11.0.5",
"unified-stream": "^3.0.0",
"uuid": "^11.0.4"
},
"devDependencies": {
"@ardatan/graphql-tools": "^4.1.0",
"@bahmutov/add-typescript-to-cypress": "^2.1.2",
"@cypress/webpack-preprocessor": "^4.1.5",
"@fullhuman/postcss-purgecss": "^7.0.2",
"@graphql-codegen/add": "^5.0.3",
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/typescript": "^4.1.2",
"@graphql-codegen/typescript-operations": "^4.4.0",
"@graphql-codegen/typescript-react-apollo": "^4.3.2",
"@next/eslint-plugin-next": "^15.0.2",
"@testing-library/cypress": "^10.0.2",
"@types/chai": "^5.0.1",
"@types/dom-mediacapture-record": "^1.0.21",
"@types/jest": "^29.5.14",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.5",
"@types/react": "^18.3.12",
"@types/webrtc": "^0.0.44",
"@typescript-eslint/parser": "^4.33.0",
"autoprefixer": "^10.4.20",
"babel-eslint": "^10.1.0",
"cypress": "^13.17.0",
"eslint": "^8.57.1",
"eslint-config-next": "^15.1.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^3.6.0",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.7",
"json-schema": "^0.4.0",
"lint-staged": "^15.3.0",
"now-env": "^3.2.0",
"postcss": "^8.4.49",
"postcss-import": "^16.1.0",
"postcss-preset-env": "^10.1.3",
"prettier": "^3.4.2",
"prettier-eslint": "^16.3.0",
"prettier-plugin-prisma": "^5.0.0",
"prisma": "^6.1.0",
"stylelint-config-recommended": "^14.0.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"typescript-eslint-parser": "^22.0.0",
"webpack": "^5.97.1"
},
"lint-staged": {
"*.+(ts|tsx)": [
"eslint --fix",
"prettier --write"
]
},
"pre-commit": "lint:staged && generate",
"license": "MIT"
}