-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.72 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.72 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
63
64
{
"name": "base-forge",
"version": "6.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/ivishal-g/base-forge.git"
},
"publishConfig": {
"provenance": true,
"access": "public"
},
"bin": {
"base-forge": "dist/index.js"
},
"files": [
"dist/index.js"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"check": "ultracite check",
"fix": "ultracite fix",
"test": "turbo test",
"analyze": "turbo analyze",
"translate": "turbo translate",
"boundaries": "turbo boundaries",
"bump-deps": "bunx npm-check-updates --deep -u && bun install",
"bump-ui": "bunx shadcn@latest add --all --overwrite -c packages/design-system",
"migrate": "cd packages/database && bunx prisma format && bunx prisma generate && bunx prisma migrate dev",
"migrate:deploy": "cd packages/database && bunx prisma generate && bunx prisma migrate deploy",
"db:push": "cd packages/database && bunx prisma format && bunx prisma generate && bunx prisma db push",
"clean": "git clean -xdf node_modules",
"release": "npm publish"
},
"devDependencies": {
"@auto-it/first-time-contributor": "^11.3.6",
"@biomejs/biome": "2.4.6",
"@repo/typescript-config": "workspace:*",
"@turbo/gen": "^2.8.14",
"@types/node": "^25.3.5",
"tsup": "^8.5.1",
"turbo": "^2.8.14",
"typescript": "^5.9.3",
"ultracite": "7.2.5",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.3.10",
"dependencies": {
"@clack/prompts": "^1.1.0",
"commander": "^14.0.3",
"nypm": "^0.6.5"
},
"overrides": {
"parse5": "^7.2.1"
},
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
]
}