-
Notifications
You must be signed in to change notification settings - Fork 287
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.51 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.51 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
{
"name": "shelf",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"prepare": "git config --unset core.hooksPath || echo ok && npx lefthook install || echo ok",
"webapp:dev": "turbo run dev --filter=@shelf/webapp",
"webapp:dev:production": "pnpm --filter @shelf/webapp run production:dev",
"webapp:build": "turbo run build --filter=@shelf/webapp",
"webapp:test": "pnpm --filter @shelf/webapp test",
"webapp:lint": "pnpm --filter @shelf/webapp lint",
"webapp:validate": "pnpm --filter @shelf/webapp validate",
"webapp:start": "pnpm --filter @shelf/webapp start:local",
"webapp:setup": "pnpm --filter @shelf/webapp run setup",
"webapp:deploy:staging": "fly deploy --remote-only --app shelf-webapp-staging --dockerfile apps/webapp/Dockerfile",
"webapp:deploy:production": "fly deploy --remote-only --app shelf-webapp --dockerfile apps/webapp/Dockerfile",
"docs:dev": "turbo run dev --filter=@shelf/docs",
"docs:build": "turbo run build --filter=@shelf/docs",
"docs:preview": "pnpm --filter @shelf/docs preview",
"db:generate": "pnpm --filter @shelf/database run db:generate",
"db:prepare-migration": "pnpm --filter @shelf/database run db:prepare-migration",
"db:deploy-migration": "pnpm --filter @shelf/database run db:deploy-migration",
"db:prepare-migration:staging": "pnpm --filter @shelf/database run db:prepare-migration:staging",
"db:deploy-migration:staging": "pnpm --filter @shelf/database run db:deploy-migration:staging",
"db:deploy-migration:production": "pnpm --filter @shelf/database run db:deploy-migration:production",
"db:reset": "pnpm --filter @shelf/database run db:reset",
"db:reset:staging": "pnpm --filter @shelf/database run db:reset:staging"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@evilmartians/lefthook": "^2.1.5",
"prettier": "3.0.3",
"turbo": "^2.9.5"
},
"pnpm": {
"overrides": {
"@docsearch/react>react": "19.2.1",
"@docsearch/react>react-dom": "19.2.1",
"@tremor/react>react": "19.2.1",
"@tremor/react>react-day-picker": "^9.14.0",
"@tremor/react>react-dom": "19.2.1",
"cross-spawn": "~7.0.6",
"p-map": "4.0.0"
}
},
"engines": {
"node": ">=22.20.0"
},
"packageManager": "pnpm@9.15.9"
}