-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1000 Bytes
/
package.json
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": "memory-game",
"version": "0.2.0",
"private": true,
"homepage": "https://javierjulio.github.io/memory-game",
"type": "module",
"scripts": {
"dev": "vite",
"start": "vite",
"build": "vite build",
"prepreview": "npm run build",
"preview": "vite preview",
"predeploy": "npm run build",
"deploy": "gh-pages --dist dist --dotfiles",
"test": "vitest run && playwright test",
"test:e2e": "playwright test --browser all",
"test:unit": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@playwright/test": "^1.47.2",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/svelte": "^5.2.3",
"@vitest/coverage-v8": "^2.1.2",
"@vitest/ui": "^2.1.2",
"gh-pages": "^6.1.1",
"jsdom": "^25.0.1",
"svelte": "^4.2.19",
"vite": "^5.4.8",
"vitest": "^2.1.2"
},
"dependencies": {
"dexie": "^3.2.5"
}
}