-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.24 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
{
"name": "dsa_visualizer",
"version": "1.0.0",
"description": "Sorting Algorithm Step-by-Step Visualization Tool",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"storybook:test": "test-storybook --url http://127.0.0.1:6006",
"storybook:test:ci": "start-server-and-test storybook http://127.0.0.1:6006 storybook:test",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"lucide-react": "^1.8.0",
"react": "^19.2.5",
"react-dom": "^19.2.5"
},
"devDependencies": {
"@storybook/addon-essentials": "^8.6.18",
"@storybook/blocks": "^8.6.18",
"@storybook/react": "^8.6.18",
"@storybook/react-vite": "^8.6.18",
"@storybook/test": "^8.6.18",
"@storybook/test-runner": "^0.23.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"jsdom": "^29.0.2",
"start-server-and-test": "^2.0.10",
"storybook": "^8.6.18",
"typescript": "^6.0.2",
"vite": "^6.4.2",
"vitest": "^4.1.4"
}
}