-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 984 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 984 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"private": true,
"scripts": {
"start": "dotnet fable src/Client --outDir src/Client/output --watch --run npx vite",
"build": "dotnet fable src/Client --outDir src/Client/output --noCache && npx vite build",
"test:auto-sync-ui": "dotnet test src/Tests/Tests.fsproj --filter \"Category=AutoSyncUiVerification\" --logger \"console;verbosity=detailed\"",
"check:extension": "tsc --project src/Extension/tsconfig.json && tsc --project src/Extension/tsconfig.contracts.json",
"test:extension": "npm run check:extension && node --test src/Tests/Extension/*.test.mjs src/Tests/Extension/reporting/*.test.mjs",
"test:reporting": "node --test src/Tests/Extension/reporting/*.test.mjs"
},
"devDependencies": {
"@github/copilot-sdk": "1.0.9",
"@types/node": "20.19.43",
"gifsicle": "^7.0.1",
"playwright": "1.58.0",
"typescript": "7.0.2",
"vite": "^6.0.0"
},
"dependencies": {
"react": "^18.3.0",
"react-dom": "^18.3.0"
}
}