-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 971 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 971 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
26
27
28
29
30
31
{
"name": "causeway-to-eriu",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"prebuild": "npm run validate-data",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "oxlint src scripts --deny-warnings",
"typecheck": "tsc --noEmit",
"validate-data": "node scripts/validate-data.mjs",
"verify": "npm run typecheck && npm run lint && npm run validate-data && npm run test:coverage && npm run headless && npm run build && npm run smoke",
"smoke": "node scripts/smoke-test.mjs",
"headless": "node scripts/headless.mjs"
},
"devDependencies": {
"@types/node": "^26.1.2",
"@vitest/coverage-v8": "^4.1.10",
"ajv": "^8.20.0",
"oxlint": "^1.76.0",
"playwright": "^1.62.1",
"typescript": "^7.0.2",
"vite": "^8.2.0",
"vite-plugin-pwa": "^1.3.0",
"vitest": "^4.1.10"
}
}