-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.08 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
{
"name": "phraze-web",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"prebuild": "run-p codegen",
"build": "next build",
"dev": "run-p dev:*",
"dev:next": "next dev",
"dev:path": "yarn generate:path --watch",
"dev:path-ext": "yarn script:path --watch",
"codegen": "graphql-codegen --config codegen.ts",
"format": "prettier --write .",
"generate:path": "pathpida --output src/lib/pathpida --ignorePath .gitignore --enableStatic",
"lint": "next lint",
"prepare": "husky",
"script:path": "yarn script:path:build && node script/dist/pathpida-extend.js",
"script:path:build": "esbuild script/pathpida-extend.ts --outdir=script/dist --bundle --platform=node --format=esm --target=node20 --packages=external --sourcemap=inline",
"start": "next start",
"tslint": "tsc --noEmit --pretty"
},
"dependencies": {
"@floating-ui/react": "^0.26.17",
"@headlessui/react": "^2.0.4",
"@hookform/resolvers": "^3.6.0",
"@lexical/link": "0.16.0",
"@lexical/list": "0.16.0",
"@lexical/markdown": "^0.16.0",
"@lexical/react": "0.16.0",
"@lexical/rich-text": "0.16.0",
"@lexical/utils": "^0.16.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toggle": "^1.1.0",
"@sentry/nextjs": "^8",
"@urql/exchange-auth": "^2.2.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"firebase": "^10.12.2",
"graphql": "^16.9.0",
"ldrs": "^1.0.2",
"lexical": "0.16.0",
"lucide-react": "^0.395.0",
"next": "14.2.4",
"next-themes": "^0.3.0",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.52.0",
"react-resizable-panels": "^2.0.19",
"sonner": "^1.5.0",
"swr": "^2.2.5",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"urql": "^4.1.0",
"uuid": "^10.0.0",
"vaul": "^0.9.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/client-preset": "4.3.1",
"@graphql-codegen/introspection": "4.0.3",
"@graphql-codegen/near-operation-file-preset": "^3.0.0",
"@graphql-codegen/typescript-urql": "^4.0.0",
"@hookform/devtools": "^4.3.1",
"@next/env": "^14.2.13",
"@parcel/watcher": "^2.4.1",
"@types/minimist": "^1.2.5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"autoprefixer": "^10.4.19",
"chokidar": "^3.6.0",
"esbuild": "^0.21.5",
"esbuild-register": "^3.5.0",
"eslint": "^8",
"eslint-config-next": "14.2.4",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"minimist": "^1.2.8",
"npm-run-all": "^4.1.5",
"pathpida": "^0.22.0",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.0"
}
}