-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
99 lines (99 loc) · 2.97 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
{
"name": "kuskus",
"scripts": {
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start",
"lint": "next lint",
"ios": "cd mobile & pnpm run ios",
"prebuild": "npx @edgedb/generate edgeql-js",
"auth:setup": "pnpm esr password-auth-setup.ts",
"generate:edgeql": "npx @edgedb/generate edgeql-js",
"generate:interfaces": "npx @edgedb/generate interfaces",
"generate:all": "pnpm generate:edgeql && pnpm generate:interfaces",
"seed": "bun --watch cli/seed.ts",
"db:migrate": "edgedb migration create && edgedb migration apply && npx @edgedb/generate edgeql-js",
"cli": "bun --watch cli/run.ts",
"setup": "bun cmd.ts setup"
},
"version": "0.1.0",
"dependencies": {
"@ai-sdk/openai": "^0.0.14",
"@edgedb/ai": "^0.1.0-alpha.1",
"@edgedb/auth-nextjs": "^0.3.1",
"@expo/vector-icons": "expo/vector-icons",
"@headlessui/react": "^2.0.4",
"@heroicons/react": "^2.1.3",
"@hookform/resolvers": "^3.4.2",
"@legendapp/state": "^2.2.0-next.91",
"@radix-ui/react-dialog": "^1.0.5",
"@sodefa/next-server-context": "^0.0.2",
"@tailwindcss/forms": "^0.5.7",
"@types/react-modal": "^3.16.3",
"ai": "^3.1.14",
"bootstrap": "^5.3.3",
"class-variance-authority": "^0.7.0",
"cloudflare-r2-edge": "^0.0.2",
"clsx": "^2.1.1",
"edgedb": "^1.5.7",
"framer-motion": "^11.2.6",
"i": "^0.3.7",
"lucide-react": "^0.379.0",
"next": "14.2.3",
"next-safe-action": "^7.0.0-next.32",
"nextjs-route-types": "^1.1.0",
"octokit": "^4.0.2",
"openai": "^4.47.1",
"react": "^18",
"react-aria-components": "^1.2.1",
"react-bootstrap": "^2.10.2",
"react-dimensions": "^1.3.1",
"react-dom": "^18",
"react-hook-form": "^7.51.5",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.2.1",
"react-modal": "^3.16.1",
"react-ronin": "^2.2.4",
"ronin": "^3.0.5",
"server-only-context": "^0.1.0",
"swiper": "^11.1.3",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"use-event-listener": "^1.0.4",
"watcher": "^2.3.1",
"zod": "^3.23.8",
"zod-form-data": "^2.0.2",
"zsa": "^0.1.1",
"zsa-react": "^0.0.1",
"zustand": "^4.5.2"
},
"devDependencies": {
"@edgedb/generate": "~0.5.3",
"@eslint/eslintrc": "3.x",
"@grafbase/sdk": "~0.24.0",
"@ngneat/falso": "^7.2.0",
"@ronin/kus": "^0.0.0-3433492832021",
"@types/inquirer": "^9.0.7",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "7.x",
"@typescript-eslint/parser": "7.x",
"autoprefixer": "^10.4.19",
"bun-types": "canary",
"esbuild-runner": "^2.2.2",
"eslint": "9.x",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "9.x",
"inquirer": "^9.2.22",
"postcss": "^8",
"prettier": "3.x",
"tailwindcss": "^3.4.3",
"typescript": "^5"
},
"prettier": {
"semi": false,
"useTabs": true
},
"license": "MIT"
}