forked from Shelf-nu/shelf.nu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 3.86 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 3.86 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
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "shelf",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"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:staging": "pnpm --filter @shelf/webapp run staging:dev",
"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:doctor": "pnpm --filter @shelf/webapp run doctor",
"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",
"webapp:seed:reporting-demo": "pnpm --filter @shelf/webapp seed:reporting-demo",
"webapp:seed:reporting-demo:staging": "pnpm --filter @shelf/webapp seed:reporting-demo:staging",
"webapp:clean:reporting-demo": "pnpm --filter @shelf/webapp clean:reporting-demo",
"webapp:clean:reporting-demo:staging": "pnpm --filter @shelf/webapp clean:reporting-demo:staging",
"companion:dev": "pnpm --filter @shelf/companion dev",
"companion:dev:clear": "pnpm --filter @shelf/companion dev:clear",
"companion:dev:tunnel": "pnpm --filter @shelf/companion dev:tunnel",
"companion:build:ios": "pnpm --filter @shelf/companion build:ios",
"companion:build:ios:device": "pnpm --filter @shelf/companion build:ios:device",
"companion:build:android": "pnpm --filter @shelf/companion build:android",
"companion:prebuild": "pnpm --filter @shelf/companion prebuild",
"companion:prebuild:clean": "pnpm --filter @shelf/companion prebuild:clean",
"companion:test:e2e": "pnpm --filter @shelf/companion test:e2e",
"companion:test:e2e:suite": "pnpm --filter @shelf/companion test:e2e:suite --",
"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"
},
"patchedDependencies": {
"expo-image@55.0.6": "patches/expo-image@55.0.6.patch"
}
},
"engines": {
"node": ">=22.20.0"
},
"packageManager": "pnpm@9.15.9"
}