forked from kyogaku-dendo/osaru
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.31 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.31 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
{
"name": "osaru",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"build:turbo": "next build --turbopack",
"start": "next start",
"lint": "biome check",
"format": "biome format --write",
"generate:api": "openapi-codegen gen sora",
"pages:deploy": "pnpm build && wrangler pages deploy .next --project-name=osaru",
"pages:dev": "wrangler pages dev .next --port 3000"
},
"dependencies": {
"@libsql/client": "^0.15.15",
"@tanstack/react-query": "^5.0.0",
"@tanstack/react-query-devtools": "^5.0.0",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.44.6",
"next": "15.5.4",
"react": "19.1.0",
"react-dom": "19.1.0",
"zustand": "^5.0.8",
"zustand-persist": "^0.4.0"
},
"devDependencies": {
"@biomejs/biome": "2.2.0",
"@cloudflare/next-on-pages": "^1.13.16",
"@openapi-codegen/cli": "^3.1.0",
"@openapi-codegen/typescript": "^11.1.0",
"@types/node": "22.18.8",
"@types/react": "19.1.6",
"@types/react-dom": "19.1.6",
"drizzle-kit": "^0.31.5",
"typescript": "5.9.2",
"vercel": "^48.4.0"
},
"packageManager": "pnpm@10.18.0"
}