-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.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
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
100
101
102
103
104
105
106
{
"name": "imageboard",
"version": "1.0.0",
"description": "An taggable image board.",
"type": "module",
"scripts": {
"nx": "nx",
"dev": "nx run-many --targets=dev,dev:generate --output-style=stream --parallel --max-parallel=10",
"lint": "nx run-many --targets=lint --output-style=stream",
"test": "nx run-many --targets=test --output-style=stream",
"generate": "nx run-many --target=generate --output-style=stream",
"build": "nx run-many --target=build",
"type-check": "nx run-many --target=type-check",
"postinstall": "npm run build"
},
"author": "Jack Wright <[email protected]>",
"license": "GPL-3.0-only",
"workspaces": [
"apps/*",
"libs/*"
],
"volta": {
"node": "20.14.0",
"npm": "10.8.1"
},
"engines": {
"node": "20.14.0",
"npm": "10.8.1"
},
"devDependencies": {
"@apollo/client": "3.10.4",
"@graphql-codegen/add": "5.0.2",
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/client-preset": "4.2.5",
"@graphql-codegen/typescript": "4.0.7",
"@graphql-codegen/typescript-operations": "4.2.0",
"@graphql-codegen/typescript-react-apollo": "4.3.0",
"@graphql-codegen/typescript-resolvers": "4.1.0",
"@hookform/resolvers": "3.4.0",
"@parcel/watcher": "2.4.1",
"@radix-ui/react-alert-dialog": "1.0.5",
"@radix-ui/react-dialog": "1.0.5",
"@radix-ui/react-dropdown-menu": "2.0.6",
"@radix-ui/react-label": "2.0.2",
"@radix-ui/react-separator": "1.0.3",
"@radix-ui/react-slot": "1.0.2",
"@radix-ui/react-switch": "1.0.3",
"@tanstack/react-query": "5.37.1",
"@tanstack/react-router": "1.32.13",
"@tanstack/router-devtools": "1.32.13",
"@tanstack/router-vite-plugin": "1.32.10",
"@types/bcryptjs": "2.4.6",
"@types/cookie-parser": "1.4.7",
"@types/cors": "2.8.17",
"@types/express": "4.17.21",
"@types/jsonwebtoken": "9.0.6",
"@types/multer": "1.4.11",
"@types/node": "20.12.11",
"@types/react": "18.3.2",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "7.8.0",
"@typescript-eslint/parser": "7.8.0",
"autoprefixer": "10.4.19",
"class-variance-authority": "0.7.0",
"clsx": "2.1.1",
"drizzle-kit": "0.22.1",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "4.6.2",
"lucide-react": "0.378.0",
"postcss": "8.4.38",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.51.4",
"react-markdown": "9.0.1",
"tailwind-merge": "2.3.0",
"tailwindcss": "3.4.3",
"tailwindcss-animate": "1.0.7",
"typescript": "5.5.0-beta",
"vite": "5.3.1",
"vitest": "1.6.0",
"zustand": "4.5.2"
},
"dependencies": {
"@apollo/server": "4.10.4",
"bcryptjs": "2.4.3",
"cookie-parser": "1.4.6",
"cors": "2.8.5",
"dataloader": "2.2.2",
"drizzle-orm": "0.31.0",
"express": "4.19.2",
"graphql": "16.8.1",
"helmet": "7.1.0",
"jsonwebtoken": "9.0.2",
"multer": "1.4.5-lts.1",
"nx": "19.1.0",
"postgres": "3.4.4",
"sharp": "0.33.4",
"tsx": "4.9.4",
"zod": "3.23.8"
}
}