-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 2.02 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "pawfinder",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"section:1:start": "node scripts/reset-section.mjs 1 start",
"section:1:complete": "node scripts/reset-section.mjs 1 complete",
"section:2:start": "node scripts/reset-section.mjs 2 start",
"section:2:complete": "node scripts/reset-section.mjs 2 complete",
"section:3:start": "node scripts/reset-section.mjs 3 start",
"section:3:complete": "node scripts/reset-section.mjs 3 complete",
"section:4:start": "node scripts/reset-section.mjs 4 start",
"section:4:complete": "node scripts/reset-section.mjs 4 complete",
"section:5:start": "node scripts/reset-section.mjs 5 start",
"section:5:complete": "node scripts/reset-section.mjs 5 complete",
"section:6:start": "node scripts/reset-section.mjs 6 start",
"section:6:complete": "node scripts/reset-section.mjs 6 complete"
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.0.0"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"@storybook/addon-a11y": "^8.4.0",
"@storybook/addon-essentials": "^8.4.0",
"@storybook/react": "^8.4.0",
"@storybook/react-vite": "^8.4.0",
"@tailwindcss/vite": "^4.0.0",
"@testing-library/jest-dom": "^6.6.0",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.0",
"@vitest/coverage-v8": "^2.1.0",
"jsdom": "^25.0.0",
"msw": "^2.6.0",
"storybook": "^8.4.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vitest": "^2.1.0"
}
}