This repository has been archived by the owner on Sep 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 3.07 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
{
"name": "copjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 80",
"lint": "next lint",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky install",
"check-types": "tsc --noEmit --pretty",
"format": "next lint --fix && prettier '**/*.{json,yaml}' --write --ignore-path .gitignore",
"migrate": "prisma migrate dev"
},
"dependencies": {
"@hookform/resolvers": "^3.0.1",
"@mdx-js/loader": "2.3.0",
"@mdx-js/react": "2.3.0",
"@next-auth/prisma-adapter": "^1.0.5",
"@next/mdx": "13.3.0",
"@prisma/client": "^4.12.0",
"@storybook/react": "^7.0.2",
"@tanstack/react-query": "^4.29.1",
"@tanstack/react-query-devtools": "^4.29.1",
"@trpc/client": "^10.19.1",
"@trpc/next": "^10.19.1",
"@trpc/react-query": "^10.19.1",
"@trpc/server": "^10.19.1",
"@types/nookies": "^2.0.3",
"accept-language": "^3.0.18",
"classnames": "^2.3.2",
"crypto-js": "^4.1.1",
"i18next": "^22.4.14",
"i18next-resources-to-backend": "^1.1.3",
"next": "^13.3.0",
"next-auth": "^4.22.0",
"nookies": "^2.5.2",
"path": "^0.12.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9",
"react-i18next": "^12.2.0",
"react-icons": "^4.8.0",
"server-only": "^0.0.1",
"sharp": "^0.32.0",
"superjson": "^1.12.2",
"tailwindcss": "^3.3.1",
"windicss": "^3.5.6",
"windicss-webpack-plugin": "^1.7.8",
"zod": "^3.21.4"
},
"devDependencies": {
"@next/bundle-analyzer": "13.3.0",
"@storybook/addon-essentials": "^7.0.2",
"@storybook/addon-interactions": "^7.0.2",
"@storybook/addon-links": "^7.0.2",
"@storybook/blocks": "^7.0.2",
"@storybook/nextjs": "^7.0.2",
"@storybook/testing-library": "^0.1.0",
"@types/crypto-js": "^4.1.1",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.0",
"@types/node": "18.15.11",
"@types/react": "18.0.34",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^13.3.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tailwindcss": "^3.11.0",
"eslint-plugin-testing-library": "^5.10.2",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"prisma": "^4.12.0",
"storybook": "^7.0.2",
"typescript": "^5.0.4"
},
"resolutions": {
"webpack": "5.11.1"
}
}