-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.43 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.43 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
{
"name": "navsentinel",
"version": "0.2.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"watch": "vite build --watch",
"verify:versions": "node scripts/check_versions.mjs",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:e2e": "playwright test",
"test:e2e:smoke": "playwright test --project=smoke",
"test:e2e:regression": "playwright test --project=regression",
"test:e2e:rollback": "playwright test -c playwright.rollback.config.ts",
"test:e2e:live": "playwright test -c playwright.live.config.ts",
"test:e2e:stress": "playwright test -c playwright.stress.config.ts",
"demo:showcase": "node scripts/run_demo.mjs core",
"demo:showcase:operator": "node scripts/run_demo.mjs operator",
"demo:showcase:recovery": "node scripts/run_demo.mjs recovery",
"demo:showcase:record": "node scripts/run_demo.mjs core --record",
"package:ext": "node scripts/package.mjs",
"gym:serve": "vite --root gym --port 5173 --strictPort",
"update:psl": "node scripts/update-psl.mjs",
"measure:fp": "node scripts/measure-fp.mjs"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.3.0",
"@playwright/test": "^1.49.0",
"@types/chrome": "^0.0.260",
"@types/node": "^20.19.37",
"fast-check": "^4.6.0",
"playwright": "^1.49.0",
"typescript": "^5.6.0",
"vite": "^5.4.0",
"vitest": "^1.6.0"
}
}