-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.54 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
{
"name": "startkit-next",
"version": "0.1.0",
"private": true,
"scripts": {
"check": "bun run format:check && bun run lint && bun run typecheck && bun test",
"clean": "git clean -xdf .next node_modules/.cache",
"build": "next build",
"dev": "next dev --turbo",
"fix": "bun format && bun lint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"logs": "wrangler pages deployment tail",
"outdated": "bunx npm-check-updates --interactive --format group",
"prebuild": "bun run lint",
"preview": "bunx @cloudflare/next-on-pages && wrangler pages dev",
"release": "./bin/release",
"setup": "./bin/setup",
"start": "next start",
"typecheck": "tsc --noEmit --pretty"
},
"dependencies": {
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-slot": "^1.1.0",
"@t3-oss/env-nextjs": "^0.11.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"geist": "^1.3.1",
"lucide-react": "^0.446.0",
"next": "15.0.0-canary.168",
"next-themes": "^0.3.0",
"react": "^19.0.0-rc-f9ebd85a-20240925",
"react-dom": "^19.0.0-rc-f9ebd85a-20240925",
"tailwind-merge": "^2.5.2",
"typed-route-handler": "^0.3.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@cloudflare/next-on-pages": "^1.13.2",
"@cloudflare/workers-types": "^4.20240909.0",
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.11.1",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/eslint-plugin-next": "15.0.0-canary.168",
"@next/mdx": "15.0.0-canary.168",
"@tailwindcss/typography": "^0.5.15",
"@types/bun": "^1.1.10",
"@types/eslint__js": "^8.42.3",
"@types/mdx": "^2.0.13",
"@types/react": "npm:types-react@rc",
"@types/react-dom": "npm:types-react-dom@rc",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import-x": "^4.3.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-tailwindcss": "^3.17.4",
"eslintrc": "eslint/eslintrc",
"postcss": "^8",
"prettier": "3.3.3",
"tailwindcss": "^3.4.13",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5",
"typescript-eslint": "^8.7.0"
},
"overrides": {
"@types/react": "npm:types-react@rc",
"@types/react-dom": "npm:types-react-dom@rc",
"eslint": "^9.11.1",
"string-width": "4.2.3"
}
}