-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
88 lines (88 loc) · 2.71 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
{
"name": "next-react-query",
"version": "0.1.0",
"private": true,
"scripts": {
"predev": "yarn codegen",
"dev": "next dev",
"prebuild": "yarn codegen",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"format": "prettier --write ./src",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"codegen": "graphql-codegen --config codegen.ts"
},
"dependencies": {
"@headlessui/react": "1.7.15",
"@heroicons/react": "2.0.18",
"@tanstack/react-query": "4.32.0",
"@tanstack/react-query-devtools": "4.32.0",
"classnames": "2.3.2",
"date-fns": "2.30.0",
"graphql": "16.7.1",
"graphql-request": "6.1.0",
"next": "13.4.11",
"next-auth": "4.22.3",
"next-router-mock": "0.9.7",
"prism-react-renderer": "2.0.6",
"react": "18.2.0",
"react-content-loader": "6.2.1",
"react-dom": "18.2.0",
"react-markdown": "8.0.7",
"rehype-raw": "6.1.1",
"remark-gfm": "3.0.1",
"use-error-boundary": "2.0.6"
},
"devDependencies": {
"@graphql-codegen/add": "5.0.0",
"@graphql-codegen/cli": "4.0.1",
"@graphql-codegen/typescript": "4.0.1",
"@graphql-codegen/typescript-document-nodes": "4.0.1",
"@graphql-codegen/typescript-operations": "4.0.1",
"@graphql-codegen/typescript-react-query": "4.1.0",
"@octokit/graphql-schema": "14.23.0",
"@storybook/addon-actions": "7.1.0",
"@storybook/addon-essentials": "7.1.0",
"@storybook/addon-interactions": "7.1.0",
"@storybook/addon-links": "7.1.0",
"@storybook/addon-postcss": "2.0.0",
"@storybook/addon-styling": "1.3.4",
"@storybook/blocks": "7.1.0",
"@storybook/nextjs": "7.1.0",
"@storybook/react": "7.1.0",
"@storybook/testing-library": "0.2.0",
"@tailwindcss/typography": "0.5.9",
"@tanstack/eslint-plugin-query": "4.29.25",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/jest": "29.5.3",
"@types/node": "20.4.2",
"@types/react": "18.2.15",
"autoprefixer": "10.4.14",
"eslint": "8.45.0",
"eslint-config-next": "13.4.11",
"eslint-plugin-storybook": "0.6.13",
"eslint-plugin-testing-library": "5.11.0",
"identity-obj-proxy": "3.0.0",
"isomorphic-unfetch": "4.0.2",
"jest": "29.6.1",
"jest-environment-jsdom": "29.6.1",
"jest-mock": "29.6.1",
"msw": "1.2.3",
"msw-storybook-addon": "1.8.0",
"postcss": "8.4.27",
"prettier": "3.0.0",
"storybook": "7.1.0",
"storybook-css-modules-preset": "1.1.1",
"tailwindcss": "3.3.3",
"typescript": "5.1.6",
"whatwg-fetch": "3.6.17"
},
"msw": {
"workerDirectory": "public"
}
}