-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.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
{
"name": "agenda",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"server": "ts-node --swc backend/server.ts",
"server-dev": "ts-node-dev --respawn --transpile-only backend/server.ts",
"generate-openapi": "orval",
"gen-db-types": "kysely-codegen --out-file ./types/db.d.ts --include-pattern public.\\* --exclude-pattern pg_\\*",
"migrate": "tsx ./backend/migrator.ts"
},
"dependencies": {
"@heroicons/react": "^2.1.5",
"@hono/node-server": "^1.13.2",
"@hono/zod-openapi": "^0.16.4",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-toggle": "^1.1.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"embla-carousel-react": "^8.3.0",
"hono": "^4.6.7",
"kysely": "^0.27.4",
"kysely-postgres-js": "^2.0.0",
"memcache-client": "^1.0.5",
"node-html-parser": "^6.1.13",
"pg": "^8.13.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.27.0",
"swr": "^2.2.5",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.7.8",
"@types/pg": "^8.11.10",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"ajv": "^8.17.1",
"autoprefixer": "^10.4.20",
"eslint": "latest",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"kysely-codegen": "^0.17.0",
"orval": "^7.2.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.14",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vite-plugin-pwa": "^0.20.5"
}
}