forked from pguzek/pguzek.github.io
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 881 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 881 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
{
"private": true,
"name": "netrunner-online",
"version": "0.0.0",
"scripts": {
"serve": "vite serve ./src/",
"build": "vite build ./src/ --outDir ../dist/ --base \"/netrunner-online/\"",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "biome lint .",
"lint:ci": "biome check .",
"format": "biome format --write .",
"check": "biome check --write .",
"typecheck": "tsc",
"verify": "npm run typecheck && npm run lint && npm test",
"e2e": "playwright test"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@playwright/test": "^1.59.1",
"@vitest/coverage-v8": "^3.0.0",
"jsdom": "^29.0.2",
"ts-patch": "^3.2.1",
"typescript": "^5.7.0",
"vite": "^6.3.4",
"vitest": "^3.0.0"
}
}