-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.06 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
{
"name": "assay",
"version": "0.0.0",
"private": true,
"description": "Assay — an autonomous data analyst you can trust.",
"type": "module",
"packageManager": "pnpm@11.5.2",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"db:generate": "pnpm --filter @assay/db generate",
"db:migrate": "pnpm --filter @assay/db migrate",
"db:seed": "pnpm --filter @assay/testing seed:warehouse",
"db:seed:insight": "pnpm --filter @assay/db seed:insight",
"infra:up": "docker compose -f infra/docker-compose.yml up -d",
"infra:down": "docker compose -f infra/docker-compose.yml down",
"infra:reset": "docker compose -f infra/docker-compose.yml down -v"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "22.10.2",
"tsx": "4.19.2",
"turbo": "2.3.3",
"typescript": "5.7.2",
"vitest": "2.1.8"
}
}