-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.29 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
{
"name": "w3ds-video",
"version": "0.0.0",
"private": true,
"type": "module",
"packageManager": "pnpm@11.20.0",
"engines": {
"node": ">=22.16.0",
"pnpm": ">=11.20.0"
},
"scripts": {
"build": "turbo run build",
"build:web:production": "bash scripts/build-web-production.sh",
"dev": "turbo run dev --parallel",
"typecheck": "turbo run typecheck",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"test": "turbo run test",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"storybook": "pnpm --filter @w3ds/ui storybook",
"storybook:build": "pnpm --filter @w3ds/ui storybook:build",
"db:generate": "pnpm --filter @w3ds/web db:generate",
"db:migrate": "pnpm --filter @w3ds/web db:migrate",
"verify:release": "node scripts/verify-release.mjs",
"smoke:production": "node scripts/verify-production.mjs",
"clean": "turbo run clean && rm -rf node_modules"
},
"devDependencies": {
"@biomejs/biome": "latest",
"@playwright/test": "latest",
"@types/node": "latest",
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"esbuild": "0.28.1",
"turbo": "latest",
"typescript": "6.0.3",
"vitest": "latest"
}
}