-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.79 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "mobx-restful-shadcn",
"version": "1.8.0",
"private": true,
"scripts": {
"prepare": "husky",
"install": "shadcn-helper install",
"test": "lint-staged",
"registry:build": "shadcn build",
"dev": "next dev --webpack",
"build": "npm run registry:build && next build --webpack",
"start": "next start",
"preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
"deploy": "opennextjs-cloudflare build && opennextjs-cloudflare deploy",
"cf-typegen": "wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts"
},
"dependencies": {
"@opennextjs/cloudflare": "^1.20.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"edkit": "^1.3.2",
"lodash.debounce": "^4.0.8",
"lucide-react": "^1.30.0",
"marked": "^18.0.9",
"mobx": "^7.0.0",
"mobx-i18n": "^0.7.6",
"mobx-react": "^10.0.0",
"mobx-react-helper": "^0.5.4",
"mobx-restful": "^2.1.5",
"next": "16.3.0",
"radix-ui": "^1.6.7",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"web-utility": "^4.7.2"
},
"devDependencies": {
"@biomejs/biome": "^2.5.7",
"@octokit/openapi-types": "^28.0.0",
"@tailwindcss/postcss": "^4.3.3",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^24.13.3",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"mobx-github": "^0.7.1",
"shadcn": "^4.16.2",
"shadcn-helper": "^0.5.9",
"tailwindcss": "^4.3.3",
"typescript": "~6.0.3",
"wrangler": "^4.120.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"biome check --write",
"biome format --write"
],
"*.{md,css,json}": "biome format --write"
}
}