-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.15 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.15 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
{
"name": "guess-the-word",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "pnpm run mocks && vite",
"build": "pnpm run mocks && tsc --project tsconfig.json && vite build",
"preview": "pnpm run mocks && vite preview",
"words": "bash ./scripts/words.bash",
"defs": "bash ./scripts/definitions.bash",
"mocks": "pnpm run words && pnpm run defs && echo",
"test:unit": "vitest",
"test:unit:ci": "vitest run",
"test:e2e": "playwright test",
"test:e2e:ci": "playwright install --with-deps && playwright test"
},
"dependencies": {
"@fontsource-variable/outfit": "catalog:",
"@fontsource/outfit": "catalog:",
"@lib/alert": "workspace:",
"@lib/dom": "workspace:",
"@lib/fetcher": "workspace:",
"@lib/step-indicator": "workspace:",
"zod": "catalog:"
},
"devDependencies": {
"@playwright/test": "1.52.0",
"@testing-library/dom": "10.4.0",
"@testing-library/user-event": "14.6.1",
"@types/node": "22.15.21",
"ejs": "3.1.10",
"jsdom": "26.1.0",
"vite": "catalog:vite7",
"vite-plugin-html-minifier": "workspace:",
"vitest": "catalog:vite7"
}
}