-
-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 2.7 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
{
"name": "norish",
"version": "0.19.1-beta",
"private": true,
"type": "module",
"packageManager": "pnpm@10.33.2",
"scripts": {
"dev": "turbo watch dev --filter=@norish/web... --continue",
"dev:tui": "turbo watch dev --ui=tui --filter=@norish/web... --continue",
"dev:mobile": "pnpm --filter @norish/mobile run start",
"build:web": "pnpm --filter @norish/web run build:web",
"build": "turbo run build",
"docs_update": "pnpm -C apps/docs run docs_update",
"build:server": "turbo run build:server -F @norish/web...",
"update-sw": "turbo run update-sw -F @norish/web...",
"clean:install": "pnpm install --frozen-lockfile",
"build:prod": "pnpm run clean:install && NODE_ENV=production pnpm run build",
"db:push": "pnpm --filter @norish/db exec drizzle-kit push --config ./src/drizzle.config.ts",
"db:generate": "pnpm --filter @norish/db exec drizzle-kit generate --config ./src/drizzle.config.ts",
"migrate": "pnpm --filter @norish/db exec drizzle-kit push --config ./src/drizzle.config.ts",
"docker:build": "docker build -f docker/Dockerfile -t norish:local --build-arg NORISH_VERSION_REPORT_JSON=\"$(node tooling/monorepo/scripts/print-package-versions.mjs)\" .",
"docker:up": "docker compose -f docker/compose.base.yaml -f docker/compose.local.yaml up -d",
"docker:down": "docker compose -f docker/compose.base.yaml -f docker/compose.local.yaml down",
"docker:test": "docker compose -f docker/docker-compose.test.yml up",
"docker:test:down": "docker compose -f docker/docker-compose.test.yml down",
"docker:tag": "docker tag norishapp/norish:test norishapp/norish:${npm_package_version}",
"docker:push": "docker push norishapp/norish:${npm_package_version}",
"docker:push:test": "docker push norishapp/norish:test",
"start": "pnpm --filter @norish/web run start",
"test": "turbo run test",
"test:run": "turbo run test",
"test:coverage": "turbo run test:coverage",
"lint": "turbo run lint --concurrency=1",
"lint:fix": "turbo run lint --concurrency=1 -- --fix",
"typecheck": "turbo run typecheck",
"typecheck:mobile": "pnpm --filter @norish/trpc run typecheck && pnpm --filter @norish/mobile exec tsc --noEmit",
"typecheck:web": "pnpm --filter @norish/web run typecheck",
"format": "turbo run format -- --write",
"format:check": "turbo run format",
"deps:cycles": "node tooling/monorepo/scripts/check-circular-deps.mjs && node tooling/monorepo/scripts/check-workspace-imports.mjs",
"i18n:check": "pnpm --filter @norish/i18n run check:locale-keys"
},
"devDependencies": {
"@norish/prettier-config": "workspace:*",
"turbo": "catalog:",
"typescript": "catalog:"
},
"prettier": "@norish/prettier-config"
}