-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
66 lines (66 loc) · 2 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
{
"name": "cloudy",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"tsc": "tsc --noEmit",
"prettier": "prettier --check . --ignore-path .gitignore",
"prettier:fix": "prettier --write . --ignore-path .gitignore",
"test": "echo \"No tests found\" && exit 0",
"pages:build": "npx @cloudflare/next-on-pages",
"pages:dev": "pnpm exec wrangler pages dev .vercel/output/static --compatibility-flag=nodejs_compat --r2=cloudy-demo",
"pages:deploy": "pnpm exec wrangler pages deploy .vercel/output/static",
"migrations:create": "tsx ./utils/db/migrations.ts create",
"migrations:compile": "tsx ./utils/db/migrations.ts compile",
"migrations:list": "pnpm exec wrangler d1 migrations list",
"migrations:apply": "pnpm exec wrangler d1 migrations apply"
},
"dependencies": {
"@auth/kysely-adapter": "^0.1.1",
"@phosphor-icons/react": "^2.0.10",
"@tanstack/react-form": "^0.0.12",
"@tanstack/react-table": "^8.9.3",
"@tanstack/react-virtual": "3.0.0-beta.56",
"cf-bindings-proxy": "0.5.0",
"kysely": "^0.26.3",
"next": "14.2.4",
"next-auth": "0.0.0-manual.ffd05533",
"next-safe-action": "^7.1.3",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"server-only": "^0.0.1",
"tailwind-merge": "^1.14.0",
"zod": "^3.22.2"
},
"devDependencies": {
"@cloudflare/next-on-pages": "beta",
"@cloudflare/workers-types": "^4.20240620.0",
"@tsconfig/strictest": "^2.0.1",
"@types/node": "20.5.6",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.15",
"eslint": "8.48.0",
"eslint-config-ixn-next": "^1.4.5",
"eslint-config-next": "13.4.19",
"miniflare": "^3.20240701.0",
"postcss": "8.4.28",
"prettier": "^3.0.2",
"prettier-plugin-tailwindcss": "^0.5.3",
"tailwindcss": "3.3.3",
"tsx": "^3.12.7",
"typescript": "5.2.2",
"vercel": "^32.4.1",
"wrangler": "^3.63.0"
},
"pnpm": {
"overrides": {
"@auth/core": "0.12.0"
}
}
}