-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.25 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
{
"name": "virtual-lab-protocol-simulation",
"version": "26.07.1",
"type": "module",
"private": true,
"scripts": {
"setup": "./devel/setup_typescript.sh",
"setup:playwright": "./devel/setup_playwright.sh",
"build": "./build_github_pages.sh",
"serve": "./run_web_server.sh",
"check": "./check_codebase.sh",
"check:all": "./run_fast_checks.sh",
"clean": "./devel/clean_build.sh",
"test:playwright": "./run_playwright_tests.sh",
"walk:all": "npx playwright test tests/playwright/e2e/protocol_walkthrough.spec.ts",
"protocol:png": "node tools/protocol_to_png.mjs",
"scene:png": "node tools/scene_to_png.mjs",
"layout:diff": "node --import tsx tools/layout_golden_diff.mjs",
"layout:refresh": "node --import tsx tools/layout_golden_diff.mjs --refresh"
},
"devDependencies": {
"@eslint/js": ">=10.0.1",
"@playwright/test": ">=1.61.1",
"@types/node": ">=26.1.1",
"esbuild": ">=0.28.1",
"esbuild-plugin-solid": ">=0.6.0",
"eslint": ">=10.7.0",
"globals": ">=17.7.0",
"playwright": ">=1.61.1",
"prettier": ">=3.9.6",
"solid-js": ">=1.9.14",
"tsx": ">=4.23.1",
"typescript": ">=6.0.3 <6.1.0",
"typescript-eslint": ">=8.65.0"
},
"allowScripts": {
"esbuild@0.28.1": true,
"fsevents@2.3.2": true,
"fsevents@2.3.3": true
}
}