-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.59 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
{
"name": "next-forge",
"version": "0.1.0",
"bin": {
"next-forge": "dist/index.js"
},
"files": [
"dist/index.js"
],
"scripts": {
"build": "turbo build",
"dev": "doppler run -- turbo dev ",
"lint": "ultracite lint",
"format": "ultracite format",
"test": "turbo test",
"analyze": "turbo analyze",
"bump-deps": "npx npm-check-updates --deep -u -x react-day-picker && pnpm install",
"bump-ui": "npx shadcn@latest add --all --overwrite -c packages/design-system",
"db:migrate": "cd packages/database && npx drizzle-kit migrate",
"db:generate": "cd packages/database && npx drizzle-kit generate",
"db:pull": "cd packages/database && npx drizzle-kit pull",
"db:push": "cd packages/database && npx drizzle-kit push",
"clean": "git clean -xdf node_modules"
},
"devDependencies": {
"@auto-it/first-time-contributor": "^11.3.0",
"@biomejs/biome": "1.9.4",
"@repo/typescript-config": "workspace:*",
"@turbo/gen": "^2.3.3",
"@types/node": "^22.10.7",
"tsup": "^8.3.5",
"turbo": "^2.3.3",
"typescript": "^5.7.3",
"ultracite": "^4.1.15",
"vitest": "^3.0.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@9.15.4",
"dependencies": {
"@better-fetch/fetch": "^1.1.18",
"@clack/prompts": "^0.9.1",
"@next-safe-action/adapter-react-hook-form": "^1.0.14",
"@tanstack/react-query": "^5.67.1",
"commander": "^13.1.0",
"framer-motion": "^12.9.2",
"next-safe-action": "^7.10.8",
"sonner": "^1.7.2",
"uploadthing": "^7.6.0",
"zod": "^3.24.1"
},
"type": "module"
}