-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 887 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 887 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
25
{
"name": "crossmigrate",
"version": "0.1.0",
"private": true,
"description": "Visual ETL tool for migrating data into Microsoft Dataverse",
"scripts": {
"dev": "concurrently -n server,client -c blue,magenta \"npm:dev:server\" \"npm:dev:client\"",
"dev:server": "npm --prefix server run dev",
"dev:client": "npm --prefix client run dev",
"install:all": "npm install && npm --prefix server install && npm --prefix client install",
"build": "npm --prefix client run build",
"start": "npm --prefix server start",
"test": "vitest run",
"test:unit": "vitest run --project unit",
"test:e2e": "vitest run --project e2e",
"test:watch": "vitest --project unit",
"test:ui": "vitest --ui --project unit"
},
"devDependencies": {
"@vitest/ui": "^4.1.11",
"concurrently": "^9.1.0",
"vite": "^8.0.14",
"vitest": "^4.1.10"
}
}