-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.25 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
{
"name": "icyberninjitsu",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "pnpm run --parallel dev",
"dev:web": "cd apps/web && npm run dev",
"dev:api": "node --env-file=.env --import tsx apps/api/src/index.ts",
"dev:worker": "node --env-file=.env --import tsx apps/worker/src/index.ts",
"build": "pnpm -r run build",
"lint": "pnpm -r run lint",
"db:migrate": "node --import tsx scripts/migrate.ts",
"db:generate": "pnpm --filter db generate",
"cleanup:posts": "node --env-file=.env --import tsx scripts/cleanup-runaway-posts.ts",
"stop-schedule": "node --env-file=.env --import tsx scripts/stop-and-reset-schedule.ts",
"test:e2e": "playwright test tests/e2e",
"playwright:install": "npx playwright install",
"audit": "pnpm audit",
"audit:fix": "pnpm audit --fix",
"dev:start": "bash scripts/dev-start.sh all",
"dev:restart": "bash scripts/dev-start.sh",
"logo": "node --import tsx scripts/logo.ts",
"github:push": "node --import tsx scripts/github-create-and-push.ts"
},
"engines": {
"node": ">=18"
},
"workspaces": ["apps/*", "packages/*"],
"packageManager": "pnpm@9.0.0",
"devDependencies": {
"@playwright/test": "^1.49.0",
"pg": "^8.13.0",
"tsx": "^4.19.0"
}
}