-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.88 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
61
62
63
{
"name": "credit-card",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"build": "tsc && vite build",
"build-storybook": "storybook build -o dist/storybook",
"coverage": "vitest run --coverage",
"dev": "vite",
"lint": "tsc && eslint src --ext ts,tsx",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"storybook": "storybook dev -p 6006"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.11"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.1.0",
"@storybook/addon-interactions": "^7.1.0",
"@storybook/addon-links": "^7.1.0",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.1.0",
"@storybook/builder-vite": "^7.1.0",
"@storybook/react": "^7.1.0",
"@storybook/react-vite": "^7.1.0",
"@storybook/testing-library": "^0.2.0",
"@swc/core": "^1.3.67",
"@swc/plugin-styled-components": "^1.5.68",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@vitejs/plugin-react-swc": "^3.0.0",
"@vitest/coverage-v8": "^0.34.1",
"@vitest/ui": "^0.32.4",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-storybook": "^0.6.13",
"jsdom": "^22.1.0",
"prettier": "^2.8.8",
"storybook": "^7.1.0",
"typescript": "^5.0.2",
"vite": "^4.3.9",
"vitest": "^0.32.4"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}