-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.25 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
{
"name": "stegoer-client",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"graphql:gen": "graphql-codegen --config src/graphql/codegen.yml",
"docs:build": "npx typedoc && prettier --write docs"
},
"dependencies": {
"@mantine/core": "^4.1.3",
"@mantine/dropzone": "^4.1.3",
"@mantine/hooks": "^4.0.8",
"@mantine/notifications": "^4.1.3",
"@mantine/rte": "^4.1.3",
"@modulz/radix-icons": "^4.0.0",
"@urql/exchange-auth": "^0.1.7",
"@urql/exchange-graphcache": "^4.3.6",
"@urql/exchange-multipart-fetch": "^0.1.14",
"@urql/exchange-persisted-fetch": "^1.3.4",
"@urql/exchange-refocus": "^0.2.5",
"@urql/exchange-request-policy": "^0.1.5",
"@urql/exchange-retry": "^0.3.3",
"graphql": "^16.3.0",
"next": "12.1.4",
"react": "17.0.2",
"urql": "^2.2.0",
"urql-custom-scalars-exchange": "^0.1.5"
},
"devDependencies": {
"@graphql-codegen/add": "^3.1.1",
"@graphql-codegen/cli": "2.6.2",
"@graphql-codegen/introspection": "^2.1.1",
"@graphql-codegen/time": "^3.1.1",
"@graphql-codegen/typescript": "2.4.8",
"@graphql-codegen/typescript-operations": "2.3.5",
"@graphql-codegen/typescript-urql": "^3.5.7",
"@next/eslint-plugin-next": "^12.1.4",
"@types/gtag.js": "^0.0.10",
"@types/node": "^17.0.23",
"@types/react": "^17.0.43",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.18.0",
"@urql/devtools": "^2.0.3",
"eslint": "^8.13.0",
"eslint-config-next": "^12.1.4",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-sonarjs": "^0.13.0",
"eslint-plugin-unicorn": "^42.0.0",
"prettier": "^2.6.2",
"typedoc": "^0.22.15",
"typedoc-plugin-extras": "^2.2.3",
"typedoc-plugin-rename-defaults": "^0.5.0",
"typescript": "^4.6.3"
}
}