-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.72 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 3.72 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "ignidash",
"version": "0.2.0",
"private": true,
"license": "AGPL-3.0-only",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "next dev",
"dev:convex": "npx convex dev --local",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"prepare": "husky",
"test": "vitest",
"test:once": "vitest run",
"test:debug": "vitest --inspect-brk --no-file-parallelism",
"test:coverage": "vitest run --coverage --coverage.reporter=text",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"create-demo": "tsx scripts/convert-inputs-json-to-demo-inputs.ts",
"docker:build": "docker compose build",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"docker:logs": "docker compose logs -f",
"selfhost": "bash scripts/selfhost.sh",
"selfhost:convex-deploy": "bash -c 'source .env.local && npx convex deploy --url \"$CONVEX_SELF_HOSTED_URL\" --admin-key \"$CONVEX_SELF_HOSTED_ADMIN_KEY\"'",
"selfhost:convex-dev": "bash -c 'source .env.local && npx convex dev --url \"$CONVEX_SELF_HOSTED_URL\" --admin-key \"$CONVEX_SELF_HOSTED_ADMIN_KEY\"'"
},
"dependencies": {
"@azure/openai": "^2.0.0",
"@better-auth/stripe": "^1.4.9",
"@convex-dev/agent": "^0.3.2",
"@convex-dev/better-auth": "^0.10.10",
"@convex-dev/migrations": "^0.3.1",
"@convex-dev/rate-limiter": "^0.2.14",
"@convex-dev/resend": "^0.1.13",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@headlessui/react": "^2.2.9",
"@heroicons/react": "^2.2.0",
"@hookform/resolvers": "^5.2.1",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-tooltip": "^1.2.8",
"@redux-devtools/extension": "^3.3.0",
"@vercel/analytics": "^1.6.1",
"better-auth": "1.4.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"comlink": "^4.4.2",
"convex": "^1.32.0",
"embla-carousel-react": "^8.6.0",
"framer-motion": "^12.23.24",
"immer": "^10.1.1",
"lucide-react": "^0.525.0",
"next": "^16.2.6",
"next-themes": "^0.4.6",
"openai": "^6.9.1",
"posthog-js": "^1.311.0",
"posthog-node": "^5.18.1",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-hook-form": "^7.62.0",
"react-markdown": "^10.1.0",
"react-number-format": "^5.4.4",
"recharts": "^3.7.0",
"stripe": "^20.1.0",
"swr": "^2.3.6",
"tailwind-merge": "^3.3.1",
"uuid": "^14.0.0",
"zod": "^4.0.5",
"zustand": "^5.0.6"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css}": [
"prettier --write"
],
"!convex/_generated/**": "echo 'Ignoring generated files'"
},
"devDependencies": {
"@edge-runtime/vm": "^5.0.0",
"@next/bundle-analyzer": "16.0.10",
"@playwright/test": "^1.58.2",
"@recharts/devtools": "^0.0.5",
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^20",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@vitest/coverage-v8": "^4.0.16",
"convex-test": "^0.0.41",
"eslint": "^9",
"eslint-config-next": "16.0.10",
"eslint-config-prettier": "^10.1.5",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.13",
"tailwindcss": "^4.1.11",
"tsx": "^4.20.6",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"vitest": "^4.0.16"
},
"overrides": {
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3"
}
}