-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 737 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "listwright",
"version": "0.1.0",
"private": true,
"description": "Reviewer-friendly AI CSV importer for auditable CRM lead cleanup.",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev": "npm run dev -w @listwright/api & npm run dev -w @listwright/web & wait",
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"test:e2e": "node scripts/e2e-sample-flow.mjs",
"typecheck": "npm run typecheck --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"start:api": "npm run start -w @listwright/api",
"start:web": "npm run start -w @listwright/web"
},
"engines": {
"node": ">=20"
}
}