-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.6 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
{
"name": "mid-embeddings",
"description": "A guessing game with embeddings",
"tags": [
"embeddings",
"game",
"convex",
"ai"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ianmacartney/mid-embeddings.git"
},
"homepage": "https://labs.convex.dev/mid-embeddings",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "npm-run-all --parallel dev:frontend dev:backend",
"dev:frontend": "vite --open",
"dev:backend": "bash convex.sh dev --tail-logs",
"setup": "node setup.mjs --once && convex dashboard",
"build": "tsc -b && vite build",
"lint": "tsc && eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"@auth/core": "^0.36.0",
"@convex-dev/action-cache": "^0.2.0",
"@convex-dev/aggregate": "^0.1.16",
"@convex-dev/auth": "^0.0.74",
"@convex-dev/crons": "^0.1.6-alpha.0",
"@convex-dev/migrations": "^0.1.6",
"@convex-dev/ratelimiter": "^0.1.7",
"@convex-dev/sharded-counter": "^0.1.1",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.2.1",
"@radix-ui/react-toggle": "^1.0.3",
"@radix-ui/react-toggle-group": "^1.0.4",
"@tanstack/react-router": "^1.45.4",
"@types/lodash": "^4.17.7",
"@types/lodash.shuffle": "^4.2.9",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"convex": "^1.16.6",
"convex-helpers": "^0.1.63",
"dayjs": "^1.11.11",
"lodash.shuffle": "^4.2.0",
"lucide-react": "^0.438.0",
"next-themes": "^0.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-flip-toolkit": "^7.2.4",
"react-type-animation": "^3.2.0",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@tanstack/router-devtools": "^1.45.4",
"@tanstack/router-plugin": "^1.45.3",
"@types/node": "^20.14.9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.19",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.39",
"prettier": "3.3.2",
"tailwindcss": "^3.4.4",
"typescript": "^5.2.2",
"vite": "^5.3.1"
}
}