-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.21 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
{
"name": "setlist-roller",
"private": true,
"version": "2.2.21",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test --project=chromium",
"test:e2e:smoke": "playwright test --project=chromium --grep @smoke",
"test:e2e:mobile": "playwright test --project=mobile",
"test:e2e:all": "playwright test",
"test:e2e:ui": "playwright test --ui",
"armadietto:up": "docker compose up -d",
"armadietto:down": "docker compose down",
"armadietto:reset": "docker compose down -v && docker compose up -d",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write ."
},
"dependencies": {
"remotestoragejs": "^2.0.0-beta.9",
"rs-migrate": "^1.0.0",
"svelte": "^5.28.2"
},
"devDependencies": {
"@biomejs/biome": "2.4.10",
"@playwright/test": "^1.59.1",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"vite": "^6.2.4",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^3.2.4"
}
}