-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.31 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
{
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "vitest",
"lint": "next lint",
"prettier": "prettier -u -w --cache",
"fmt": "pnpm run prettier .",
"prepare": "husky install",
"generate": "DOTENV_CONFIG_PATH=.env.local graphql-codegen -r dotenv-expand/config",
"postinstall": "stale-dep -u",
"extract": "formatjs extract --out-file messages/en-US.json -- '!**/*.d.ts' 'src/**/*.{ts,tsx}'",
"compile-folder": "formatjs compile-folder --ast -- messages src/i18n/compiled-messages",
"extract-compile": "pnpm run extract && pnpm run compile-folder",
"commit": "commit"
},
"dependencies": {
"@formatjs/intl": "^2.9.0",
"@formatjs/intl-localematcher": "^0.4.0",
"@hookform/resolvers": "^3.3.1",
"@radix-ui/react-alert-dialog": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@urql/core": "^4.1.2",
"@urql/exchange-graphcache": "^6.3.3",
"@urql/next": "^1.0.0",
"cookie": "^0.5.0",
"core-js": "^3.32.1",
"cva": "npm:class-variance-authority@^0.7.0",
"graphql": "^16.8.0",
"jose": "^4.14.4",
"lucide-react": "^0.263.1",
"negotiator": "^0.6.3",
"next": "^13.4.19",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.4",
"react-intl": "^6.4.4",
"react-merge-refs": "^2.0.2",
"sharp": "^0.32.5",
"sonner": "^0.6.2",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.7",
"tiny-invariant": "^1.3.1",
"usehooks": "npm:@uidotdev/usehooks@^2.2.0",
"zod": "^3.22.2"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@commitlint/prompt-cli": "^17.7.1",
"@commitlint/types": "^17.4.4",
"@formatjs/cli": "^6.1.3",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/client-preset": "^4.1.0",
"@graphql-codegen/import-types-preset": "^2.2.6",
"@graphql-typed-document-node/core": "^3.2.0",
"@testing-library/react": "^15.0.2",
"@types/cookie": "^0.5.1",
"@types/negotiator": "^0.6.1",
"@types/node": "^20.5.8",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.15",
"client-only": "^0.0.1",
"dotenv": "^16.3.1",
"dotenv-expand": "^10.0.0",
"eslint": "^8.48.0",
"eslint-config-next": "^13.4.19",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-formatjs": "^4.10.3",
"eslint-plugin-functional": "^5.0.8",
"eslint-plugin-simple-import-sort": "^10.0.0",
"graphql-config": "^5.0.2",
"husky": "^8.0.3",
"jsdom": "^24.0.0",
"lint-staged": "^13.3.0",
"postcss": "^8.4.29",
"prettier": "3.0.0",
"prettier-plugin-tailwindcss": "^0.4.1",
"server-only": "^0.0.1",
"stale-dep": "^0.7.0",
"tailwindcss": "^3.3.3",
"type-fest": "^4.3.1",
"typescript": "5.4.5",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.5.0"
}
}