-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.55 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.55 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
58
59
60
{
"name": "react-vitest",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"fix": "biome check --apply .",
"fix:unsafe": "biome check --apply-unsafe .",
"lint": "biome lint .",
"test": "vitest",
"test:ui": "vitest --ui",
"type-check": "tsc --noEmit",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test-storybook": "test-storybook"
},
"imports": {
"#src/api/example": {
"storybook": "./src/api/example.mock.ts",
"default": "./src/api/example.ts"
},
"#*": [
"./*",
"./*.ts",
"./*.tsx"
]
},
"dependencies": {
"clsx": "1.1.1",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@biomejs/biome": "1.7.0",
"@storybook/addon-docs": "^8.1.6",
"@storybook/addon-essentials": "^8.1.6",
"@storybook/addon-interactions": "^8.1.6",
"@storybook/addon-links": "^8.1.6",
"@storybook/react": "^8.1.6",
"@storybook/react-vite": "^8.1.6",
"@storybook/test": "^8.1.6",
"@storybook/test-runner": "^0.18.2",
"@testing-library/jest-dom": "6.4.2",
"@testing-library/react": "15.0.2",
"@testing-library/user-event": "14.5.2",
"@types/react": "18.2.25",
"@types/react-dom": "18.2.25",
"@vitejs/plugin-react": "4.2.1",
"@vitest/ui": "1.5.0",
"jsdom": "24.0.0",
"msw": "2.2.13",
"storybook": "^8.1.6",
"typescript": "5.4.5",
"vite": "5.2.8",
"vitest": "1.5.0"
}
}