-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.56 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@vitest/example-react-storybook",
"private": true,
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"storybook": "start-storybook -p 6006"
},
"dependencies": {
"@emotion/babel-plugin": "^11.10.5",
"@emotion/react": "^11.10.5",
"cross-fetch": "^3.1.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^3.39.0"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@storybook/addon-actions": "^6.5.5",
"@storybook/addon-essentials": "^6.5.5",
"@storybook/addon-links": "^6.5.5",
"@storybook/addons": "^6.5.13",
"@storybook/builder-vite": "^0.1.35",
"@storybook/client-api": "^6.5.13",
"@storybook/core-common": "^6.5.13",
"@storybook/node-logger": "^6.5.13",
"@storybook/preview-web": "^6.5.13",
"@storybook/react": "^6.5.5",
"@storybook/testing-library": "^0.0.11",
"@storybook/testing-react": "^1.3.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.5",
"@types/react": "^17.0.45",
"@types/react-dom": "^17.0.17",
"@vitejs/plugin-react": "^1.3.2",
"@vitest/ui": "latest",
"babel-loader": "^8.2.5",
"jsdom": "latest",
"msw": "^0.39.2",
"msw-storybook-addon": "^1.6.3",
"require-from-string": "^2.0.2",
"typescript": "^4.7.2",
"vite": "latest",
"vitest": "latest",
"webpack": "^5.74.0"
},
"msw": {
"workerDirectory": "public"
},
"stackblitz": {
"startCommand": "npm run test:ui"
}
}