-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.37 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.37 KB
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
{
"name": "echo-notes",
"private": true,
"type": "module",
"scripts": {
"build": "bun --bun react-router build",
"dev": "bun --bun react-router dev --port 3000",
"start": "bun --bun react-router-serve ./build/server/index.js",
"typecheck": "react-router typegen && tsc",
"db:up": "docker compose -p echo-notes -f ./.docker/docker-compose.dev.yml up -d",
"db:generate": "bun --bun prisma generate",
"db:migrate": "bun --bun prisma migrate dev",
"db:deploy": "bun --bun prisma migrate deploy",
"component": "bunx --bun shadcn@latest add"
},
"dependencies": {
"@fontsource-variable/cascadia-code": "5.2.2",
"@fontsource-variable/cascadia-mono": "5.2.2",
"@hugeicons/core-free-icons": "2.0.0",
"@hugeicons/react": "1.1.1",
"@prisma/adapter-pg": "7.2.0",
"@prisma/client": "7.2.0",
"@radix-ui/react-slot": "1.2.4",
"@react-router/node": "7.10.1",
"@react-router/serve": "7.10.1",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"isbot": "5.1.31",
"lucide-react": "0.562.0",
"octokit": "5.0.5",
"pg": "8.16.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-router": "7.10.1",
"remix-auth": "4.2.0",
"remix-auth-github": "3.0.2",
"tailwind-merge": "3.4.0"
},
"devDependencies": {
"@eslint/js": "9.28.0",
"@react-router/dev": "7.10.1",
"@react-router/remix-routes-option-adapter": "7.10.1",
"@tailwindcss/vite": "4.1.13",
"@types/bun": "1.3.5",
"@types/eslint-plugin-security": "3.0.0",
"@types/node": "22",
"@types/pg": "8.16.0",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@typescript-eslint/parser": "8.33.1",
"@typescript-eslint/utils": "8.34.1",
"eslint": "9.28.0",
"eslint-config-prettier": "10.1.5",
"eslint-import-resolver-typescript": "4.4.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.4.1",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-security": "3.0.1",
"eslint-plugin-unicorn": "59.0.1",
"globals": "16.2.0",
"prettier": "3.5.3",
"prisma": "7.2.0",
"remix-flat-routes": "0.8.5",
"tailwindcss": "4.1.13",
"tw-animate-css": "1.4.0",
"typescript": "5.9.2",
"typescript-eslint": "8.34.0",
"vite": "7.1.7",
"vite-tsconfig-paths": "5.1.4"
}
}