-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
103 lines (102 loc) · 3.24 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
{
"private": true,
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"build:pkg": "cd packages/shortest && pnpm build",
"setup": "npx tsx lib/setup.ts",
"db:seed": "npx tsx lib/db/seed.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "npx tsx lib/db/migrate.ts",
"db:studio": "drizzle-kit studio",
"db:cleanup": "tsx lib/db/cleanup.ts",
"stripe:webhooks": "stripe listen --forward-to http://localhost:3000/api/stripe/webhook",
"test": "shortest",
"prepare": "cd packages/shortest && pnpm build",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@ai-sdk/anthropic": "^0.0.50",
"@ai-sdk/openai": "^0.0.61",
"@clerk/nextjs": "^5.6.0",
"@faker-js/faker": "^8.4.1",
"@octokit/rest": "^21.0.2",
"@playwright/test": "^1.48.1",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-radio-group": "^1.2.0",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^22.5.4",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@vercel/postgres": "^0.10.0",
"adm-zip": "^0.5.16",
"ai": "^3.4.0",
"autoprefixer": "^10.4.20",
"bcryptjs": "^2.4.3",
"bright": "^0.8.5",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "1.0.0",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.24.2",
"drizzle-orm": "^0.33.0",
"jose": "^5.8.0",
"lucide-react": "^0.439.0",
"minimatch": "^10.0.1",
"next": "15.0.0-canary.152",
"postcss": "^8.4.45",
"postgres": "^3.4.4",
"react": "19.0.0-rc-7771d3a7-20240827",
"react-beautiful-dnd": "^13.1.1",
"react-diff-viewer": "^3.1.1",
"react-dom": "19.0.0-rc-7771d3a7-20240827",
"run": "^1.5.0",
"server-only": "^0.0.1",
"stripe": "^16.10.0",
"swr": "^2.2.5",
"tailwind-merge": "^2.5.2",
"tailwindcss": "^3.4.11",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-react-aria-components": "1.1.5",
"typescript": "^5.6.2",
"vaul": "^0.9.4",
"vite-tsconfig-paths": "^5.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@antiwork/shortest": "workspace:*",
"@clerk/testing": "^1.3.32",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/adm-zip": "^0.5.5",
"@types/js-yaml": "^4.0.9",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"happy-dom": "^15.7.4",
"js-yaml": "^4.1.0",
"jsdom": "^25.0.1",
"smee-client": "^2.0.3",
"tsx": "^4.7.1"
}
}