-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 797 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "redwood-chat-workspace",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@9.15.9",
"scripts": {
"lint": "pnpm -r run lint && pnpm run lint:docs",
"lint:docs": "node scripts/lint-docs.mjs",
"typecheck": "pnpm -r run typecheck",
"test:unit": "vitest run --config vitest.unit.config.ts",
"test:regression": "vitest run --config vitest.regression.config.ts",
"smoke": "pnpm run test:regression",
"test": "pnpm run test:unit && pnpm run test:regression",
"ci": "pnpm run lint && pnpm run typecheck && pnpm run test && pnpm run smoke"
},
"devDependencies": {
"@types/node": "^24.3.0",
"@types/react": "^19.2.14",
"miniflare": "^4.20260210.0",
"tsx": "^4.21.0",
"typescript": "^5.9.2",
"vitest": "^2.1.8"
}
}